Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amscotti/firstunique
Example application written in F#
https://github.com/amscotti/firstunique
dotnet-core fsharp
Last synced: about 2 months ago
JSON representation
Example application written in F#
- Host: GitHub
- URL: https://github.com/amscotti/firstunique
- Owner: amscotti
- License: mit
- Created: 2020-09-03T16:16:15.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-08T03:41:37.000Z (about 4 years ago)
- Last Synced: 2024-12-16T16:12:40.073Z (about 2 months ago)
- Topics: dotnet-core, fsharp
- Language: F#
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FirstUnique
Example application written in F# to show off using Optional Types and Pipes to Solve a simple challenge of finding the first unique Character in a String.## Running Unit Test
Run `dotnet test`## Run Command line Application
Run `dotnet run --project FirstUnique.CommandLine abc`## Docker
### Build docker image and use local image
* Build with `docker build . -t first-unique`
* Run wit `docker run first-unique aabbc`