跳转到主要内容
Please contribute to the documentation at
https://github.com/JukaLang/juka-website
Juka 编程语言
文档
学习
下载
尝试在线
中文
English
Русский
中文
Español
Français
Deutsch
GitHub
搜索
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
()
;