Skip to content

Instantly share code, notes, and snippets.

@RoyalIcing
Last active February 18, 2022 06:29
Show Gist options
  • Save RoyalIcing/38fb200b9f32087e1d222b638b5957b2 to your computer and use it in GitHub Desktop.
Save RoyalIcing/38fb200b9f32087e1d222b638b5957b2 to your computer and use it in GitHub Desktop.
export function* TrafficLights() {
function* Green() {
yield on("timer", Yellow);
}
function* Yellow() {
yield on("timer", Red);
}
function* Red() {
yield on("timer", Green);
}
return Red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment