Skip to content

Instantly share code, notes, and snippets.

View jedjohan's full-sized avatar

Johan Eriksson jedjohan

  • walr
  • Sverige
  • 19:21 (UTC +02:00)
  • X @jedjohan
View GitHub Profile
@jedjohan
jedjohan / löpträning.cs
Last active March 26, 2023 15:54
Löprundor
// skapa lite random löprundor och lägg i en lista
using System;
using System.Collections.Generic;
using System.Linq;
var löprundor = new List<LöpRunda>
{
new LöpRunda(5, 20.3),
new LöpRunda(10, 55),
new LöpRunda(11, 69),
using System;
using System.Collections.Generic;
using System.IO;
using Microsoft.Office.Interop.Word;
class Program
{
static void Main(string[] args)
{
List<string> path = new List<string>(args);