mirror of
https://github.com/Dummi26/mers.git
synced 2025-03-10 22:37:46 +01:00
12 lines
214 B
Plaintext
12 lines
214 B
Plaintext
![]() |
a = (max int) {
|
||
|
println("Max: " + max.to_string())
|
||
|
for i max {
|
||
|
println(i.to_string())
|
||
|
}
|
||
|
}
|
||
|
a.debug()
|
||
|
// why does this work
|
||
|
a.thread(10).await()
|
||
|
// and this just blocks and does nothing
|
||
|
a.run(10)
|