Mainly to get rid of one top level directory. But this will also be useful when there are tests of the embedding API.
10 lines
207 B
Plaintext
10 lines
207 B
Plaintext
var fiber = new Fiber {
|
|
IO.print("fiber")
|
|
}
|
|
|
|
IO.print("before") // expect: before
|
|
fiber.run() // expect: fiber
|
|
|
|
// This does not get run since we exit when the run fiber completes.
|
|
IO.print("nope")
|