Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 753 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 753 Bytes

A language to introduce students to programming

Get gradle aliases from my .dotfiles repo: Gradle Aliases

*Note: Scripts reference gradle and thus won't work if you don't have gradle installed
  1. How to build the compiler:

    • If you have Gradle installed: gradle build
    • If not:
      • Unix: ./gradlew build
      • Windows: gradlew build
  2. How to compile Less-Java source:

    • ./compile.sh <file-name>
  3. How to run the most recently compiled file:

    • ./run.sh
  4. How to run the tests in the most recently compiled file:

    • ./test.sh
  5. If you would like to use Eclipse, then run gradle eclipse to generate project files.