You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
data IFoo;
code/await/dynamic Foo_Action(var&/dynamic IFoo foo) -> none
do
end
code/await Spawn_Foo( var& IFoo foo ) -> none
do
spawn/dynamic Foo_Action(&foo);
end
data IFoo.Foo2;
code/await/dynamic Foo_Action(var&/dynamic IFoo.Foo2 foo) -> none
do
await 2s;
end
var IFoo.Foo2 foo2 = val IFoo.Foo2();
spawn Spawn_Foo(&foo2);
await FOREVER;
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: