Files
TDT4205/ps4/vsl_programs/ps4-symbols/strings.vsl
T
2026-03-09 11:20:18 +01:00

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
}