├── .gitignore ├── README.md ├── example ├── src │ └── Example.scala └── test │ ├── resources │ └── src.json │ └── src │ └── ExampleTests.scala └── mill /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/scala-native-example-app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/scala-native-example-app/HEAD/README.md -------------------------------------------------------------------------------- /example/src/Example.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/scala-native-example-app/HEAD/example/src/Example.scala -------------------------------------------------------------------------------- /example/test/resources/src.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/scala-native-example-app/HEAD/example/test/resources/src.json -------------------------------------------------------------------------------- /example/test/src/ExampleTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/scala-native-example-app/HEAD/example/test/src/ExampleTests.scala -------------------------------------------------------------------------------- /mill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/scala-native-example-app/HEAD/mill --------------------------------------------------------------------------------