19 lines
288 B
Plaintext
19 lines
288 B
Plaintext
var glob
|
|
|
|
func a() {
|
|
println("Hei", " ", "and", " ", "hello")
|
|
|
|
glob = 10
|
|
while (1) {
|
|
println("Cool")
|
|
if (glob == 0) {
|
|
println("Done!")
|
|
break
|
|
}
|
|
glob = glob - 1
|
|
println("Glob is now: ", glob)
|
|
}
|
|
|
|
return 5
|
|
}
|