Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bakkdoor/738663 to your computer and use it in GitHub Desktop.
Save bakkdoor/738663 to your computer and use it in GitHub Desktop.
if: 3 < 4 then: {
# ...
} else: {
# ...
}
# vs:
if: (3 < 4) then: {
# ...
} else: {
# ...
}
# also:
if: array size < 5 then: {
# ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment