Skip to content

Commit 426128d

Browse files
committed
More nitpicking
1 parent 4b68d18 commit 426128d

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

examples/hello.scala

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package hello
2+
3+
object world extends App {
4+
println("hello dotty!")
5+
}

readme.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ The experimental compiler for a Scala dialect based on DOT.
77
```
88
sbt compile
99
sbt run
10+
sbt test
1011
```
11-
The tests (`sbt test`) don''t work yet.
12+
At least half of the tests fail, we need to diagnose them.
1213

1314

1415
### To use the Scala IDE:
@@ -20,7 +21,8 @@ Notes:
2021
* There are 2 spurious version incompatibility warnings
2122
* To run dotty in Eclipse:
2223
* Navigate to `dotty.tools.dotc.Main`
23-
* Run As ... > Scala Application
24-
* then go to Run Configurations > Main$ > Classpath > Bootstrap entries:
25-
* add the Scala library (Advanced... > Add library ... > Scala library)
26-
* add the dotty classfiles (Add projects... > [x] dotty)
24+
* `Run As...` > `Scala Application`
25+
* then go to `Run Configurations` > `Main$` > `Classpath` > `Bootstrap entries`:
26+
* add the Scala library (`Advanced...` > `Add library...` > `Scala library`)
27+
* add the dotty classfiles (`Add projects...` > `[x] dotty`)
28+
* then go to `Run Configurations` > `Main$` > `Arguments` and add `${project_loc}/examples/hello.scala`

0 commit comments

Comments
 (0)