jure_mo (end)
Konten ini belum tersedia dalam bahasa Anda.
Description / Deskripsi
Section titled “Description / Deskripsi”The jure_mo keyword ends a block of code in SamaLang. It is used to close if, while, for, function, and other block structures.
It is equivalent to end in standard Lua.
Keyword jure_mo digunakan untuk menutup blok kode dalam SamaLang. Digunakan untuk menutup if, while, for, fungsi, dan struktur blok lainnya.
Setara dengan end di Lua.
Usage / Penggunaan
Section titled “Usage / Penggunaan”-- End an if blocklamen condition tres -- codejure_mo
-- End a functionfungsi nama() -- codejure_moExamples
Section titled “Examples”Closing Different Blocks
Section titled “Closing Different Blocks”-- If blocklamen true tres tulis("A")jure_mo
-- Function blockfungsi hello() tulis("Hello!")jure_mo
-- While blockada i = 1untu i <= 5 boat tulis(i) i = i + 1jure_mo