Hash :
baab45a7
Author :
Thomas de Grivel
Date :
2025-07-19T19:45:46
make ikc3 tests pass again, add % operator
require Thread
true
if t = Thread.new(fn () { puts("ok from thread") ; :ok_from_thread }) do
Thread.delete(t)
end
ok from thread
:ok_from_thread
name = "Plop"
"Plop"
if t = Thread.new(fn () { puts("Hello #{name} from thread") ; :ok_from_thread }) do
Thread.delete(t)
end
Hello Plop from thread
:ok_from_thread