Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 401 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 401 Bytes

Example

Example of Juka Library that can be installed by Juka

Download it in Juka:

Inside Juka REPL

Press "Install a Package" and type jukaLang

Running inside Juka Code/File:

get @jukaLang/Example/main.juk

Example:

func main() = {
   // Running Juka Code
   printLine("Starting to run Example");
   get example = @jukaLang/Example/main.juk
   example.main();
}