2019-11-19 20:42:32 +03:00
|
|
|
# AtomicKotlinCourse
|
|
|
|
|
2020-10-12 13:25:22 +03:00
|
|
|
If you want to use the text version of the exercises and solutions (rather than the EDU version
|
|
|
|
that runs inside IntelliJ IDEA):
|
|
|
|
|
|
|
|
- Download and unpack [the current release](https://github.com/svtk/AtomicKotlinCourse/releases/tag/v5.0)
|
|
|
|
|
2020-10-11 19:41:32 +03:00
|
|
|
- To check output and 'eq' for examples and exercise solutions, run `gradlew TestExamples`.
|
|
|
|
|
|
|
|
- To test the exercises against their given solutions, run `gradlew TestExercises`.
|
|
|
|
|
|
|
|
## To use in developer mode:
|
2019-11-19 20:42:32 +03:00
|
|
|
|
|
|
|
After cloning, open as a project in Intellij IDEA with the EDU extension installed.
|
|
|
|
|
|
|
|
When you make changes, you might need to rerun Gradle to build the project:
|
|
|
|
|
|
|
|
```
|
|
|
|
gradlew build -x test
|
|
|
|
```
|