Skip to main content

Writing your first application

Let's start by creating a "Hello World" application.

  1. Create an empty file and save it as HelloWorld.juk.
  2. In that file, copy and paste the following code:
func main() =  {
printLine("Hello World")
}
  1. Once done, save the file and run the following command:
./juka HelloWorld.juk

This will compile and run your application. If everything went well, you should see the following output:

Hello World