Skip to content

Instantly share code, notes, and snippets.

@eholk
Created August 6, 2012 22:22
Show Gist options
  • Select an option

  • Save eholk/3279033 to your computer and use it in GitHub Desktop.

Select an option

Save eholk/3279033 to your computer and use it in GitHub Desktop.
select! {
foo => {
do_foo -> _next {
}
}
bar => {
do_bar(x) -> _next {
debug!(x)
}
do_baz(b) -> _next {
if b { debug!("true") } else { debug!("false") }
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment