lune-org/lune

`coroutine.resume` doesn't pass values

Closed this issue · 0 comments

The following code:

local thread = coroutine.create(function(Value)
    print("Value: ", Value)
end)

coroutine.resume(thread, "Hello World")

Will output Value: nil when ran with lune.