Skip to content

Instantly share code, notes, and snippets.

@jeffkreeftmeijer
Created December 30, 2020 16:50
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 jeffkreeftmeijer/d84d1f9090f16cee0c86f4be519e9743 to your computer and use it in GitHub Desktop.
Save jeffkreeftmeijer/d84d1f9090f16cee0c86f4be519e9743 to your computer and use it in GitHub Desktop.
fn count_down() {
"3... 2... 1..."
}
fn blast_off() {
"BOOM!"
}
pub fn launch() {
[
count_down(),
blast_off(),
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment