import { Duration, Effect, Stream, pipe } from "effect";
pipe(
Stream.tick(Duration.decode(1000)),
Stream.runForEach(Effect.log),
Effect.runPromise
);
import { Duration, Effect, Stream, pipe } from "effect";
pipe(
Stream.tick(Duration.decode(1000)),
Stream.runForEach(Effect.log),
Effect.runPromise
);