import { Go, Chan, Lock } from "./go"; Go(async ($: WaitFn) => { for await (const i of $.range(5)) { console.log('F1', i); } }); Go(async ($: WaitFn) => { for await (const i of $.range(10)) { console.log('F2', i); } });