https://github.com/thenick775/scala-exercises
https://github.com/thenick775/scala-exercises
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/thenick775/scala-exercises
- Owner: thenick775
- Created: 2024-07-10T04:40:24.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-07-10T05:01:47.000Z (11 months ago)
- Last Synced: 2025-01-22T09:32:59.940Z (4 months ago)
- Language: Scala
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## sbt project compiled with Scala 3
### Getting Started
This is a normal sbt project.
You can compile this code with:
```
sbt compile;
```Run the main function with:
```
sbt run
```### Testing
Run unit tests with:
```
sbt test;
```