27 lines
534 B
Markdown
27 lines
534 B
Markdown
|
# TDT4165 2022 - Scala Project
|
||
|
|
||
|
## Delivery 1
|
||
|
|
||
|
In order to run this part of the project, you will only need to use the scala REPL.
|
||
|
|
||
|
It gets installed with the language, which you can find [here][scala].
|
||
|
|
||
|
```console
|
||
|
$ cd tasks
|
||
|
$ scala task1.scala
|
||
|
$ scala task2.scala
|
||
|
```
|
||
|
|
||
|
## Delivery 2
|
||
|
|
||
|
In order to run this part of the project, you will need the scala build tool (sbt).
|
||
|
|
||
|
It gets installed with the language, which you can find [here][scala].
|
||
|
|
||
|
```console
|
||
|
$ cd project_tasks
|
||
|
$ sbt run
|
||
|
```
|
||
|
|
||
|
[scala]: https://www.scala-lang.org/download/
|