Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 756 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 756 Bytes

ScalaFX Hello World - Gradle

Simple example of a ScalaFX application using Gradle Build Tool.

Example Scala code is in app/src/main/scala/hello/ScalaFXHelloWorld.scala

How to Build and Run

  1. Install Java 17 JDK or newer.

  2. Run the example. From command prompt change to the directory containing this example and run the example. On Windows:

     .\gradlew run
    

    On Linux or Mac:

     ./gradlew run
    

SBT Version

SBT version of this example can be found in scalafx-hello-world