diff options
author | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2022-12-09 19:31:24 +0100 |
---|---|---|
committer | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2022-12-09 19:31:24 +0100 |
commit | 967e964f453fc031816270b90d6eab38410769a3 (patch) | |
tree | 99ca5504c1be629eb35cda6514df401965d232fd /aoc-2022-dotnet/Common/Library.fs | |
parent | fd04f2ebd1a4ade35a3e218b7737311ac631fce8 (diff) | |
download | gleam_aoc2020-967e964f453fc031816270b90d6eab38410769a3.tar.gz gleam_aoc2020-967e964f453fc031816270b90d6eab38410769a3.zip |
Extract common functions to util module
Diffstat (limited to 'aoc-2022-dotnet/Common/Library.fs')
-rw-r--r-- | aoc-2022-dotnet/Common/Library.fs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/aoc-2022-dotnet/Common/Library.fs b/aoc-2022-dotnet/Common/Library.fs deleted file mode 100644 index 7354509..0000000 --- a/aoc-2022-dotnet/Common/Library.fs +++ /dev/null @@ -1,8 +0,0 @@ -module Common - -open FParsec - -let parse parser input = - match run parser input with - | Success (result, _, _) -> result - | _ -> failwith "Invalid input format!" |