Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 476 Bytes

README.md

File metadata and controls

36 lines (28 loc) · 476 Bytes

langn't -- Not Really a Language

Setup/Build

To build a project:

./gradlew build

To genrate runnable jar:

./gradlew jar

To list all posible tasks:

./gradlew task

Usage

test.nt

fu hello(message: 'Hello World!') {
  println(message)
}

hello()

You can run it like this:

java -jar ./build/libs/langnt.jar test.nt

Example Code

You can find a list of complete example files here.