Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/markusbrammer/adventofcodefsharp
Advent of Code in F#
https://github.com/markusbrammer/adventofcodefsharp
Last synced: about 2 months ago
JSON representation
Advent of Code in F#
- Host: GitHub
- URL: https://github.com/markusbrammer/adventofcodefsharp
- Owner: markusbrammer
- Created: 2022-11-28T19:19:21.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-07T19:53:12.000Z (2 months ago)
- Last Synced: 2024-11-07T20:38:58.816Z (2 months ago)
- Language: F#
- Homepage:
- Size: 207 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code
Attempt at [Advent of Code](https://adventofcode.com/) using F#.
## How to run
There are two ways to get the solution for a day's puzzle: Using `dotnet run` or F#'s interactive shell `dotnet fsi` (or shortcuts like `alt+enter` in VSCode's Ionide Plugin).
### dotnet fsi
Run year 2022, day 7:
```shell
dotnet fsi Year2022/Day09.fsx
```### dotnet run
From root folder (this folder):
```shell
dotnet run --project CLI --
```(**Note the space after `--` before ` `**).
Run year 2022, day 7:
```shell
dotnet run --project CLI -- 2022 7
```