Skip to content

Instantly share code, notes, and snippets.

@ohrite
Created September 15, 2012 20:28
Show Gist options
  • Save ohrite/3729613 to your computer and use it in GitHub Desktop.
Save ohrite/3729613 to your computer and use it in GitHub Desktop.
A sample snowflake module
sample () {
case "$1" in
test)
echo "Successfully ran sample test!"
;;
*)
return 1
;;
esac
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment