Skip to main content
Please contribute to the documentation at
https://github.com/JukaLang/juka-website
Juka Programming Language
Docs
Learn
Download
Try Online
English
English
Русский
中文
Español
Français
Deutsch
GitHub
Search
K
Juka Online Editor
Save to Storage
Load from Storage
●
Untitled.juk
+
9
1
2
3
4
5
6
7
›
⌄
func
x
()
=
{
string
y
=
"Hello World"
;
printLine
(
y
)
;
printLine
(
"It works!"
)
;
}
x
()
;