Scaffolding

This commit is contained in:
Smaug123
2023-12-04 23:40:02 +00:00
parent c8c1cdc950
commit 65b82a3f74
7 changed files with 89 additions and 9 deletions

View File

@@ -0,0 +1,16 @@
namespace AdventOfCode2023
open System
open System.Collections.Generic
[<RequireQualifiedAccess>]
module Day5 =
let part1 (s : string) =
use lines = StringSplitEnumerator.make '\n' s
0
let part2 (s : string) =
use lines = StringSplitEnumerator.make '\n' s
0