Scaffolding

This commit is contained in:
Smaug123
2023-12-05 20:28:29 +00:00
parent 9c48e5fa96
commit fc9e99aef0
6 changed files with 111 additions and 0 deletions

View File

@@ -13,6 +13,7 @@
<Compile Include="Day3.fs" />
<Compile Include="Day4.fs" />
<Compile Include="Day5.fs" />
<Compile Include="Day6.fs" />
</ItemGroup>
</Project>

View File

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