Skip to content

Instantly share code, notes, and snippets.

@ab5tract
Created January 31, 2023 22:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ab5tract/a3f47f6122807adbac3bf9487bfc6cd8 to your computer and use it in GitHub Desktop.
Save ab5tract/a3f47f6122807adbac3bf9487bfc6cd8 to your computer and use it in GitHub Desktop.
#!/usr/bin/env raku
sub MAIN(:$seconds) {
say "Starting your timer to fire every $seconds seconds.";
my $supply = Supply.interval($seconds, :delay($seconds));
react {
whenever $supply {
say "Your timer has chimed!";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment