Skip to content

Instantly share code, notes, and snippets.

@shrdlu68
Last active June 14, 2018 08:55
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 shrdlu68/f13ffcfb25f34e4aea960854c7537ada to your computer and use it in GitHub Desktop.
Save shrdlu68/f13ffcfb25f34e4aea960854c7537ada to your computer and use it in GitHub Desktop.
(when (or (some-function some-arg)
some-conditition
some-state
some-boolean)
(do stuff))
(when (or (some-function some-arg) some-conditition some-state some-boolean)
(do stuff))
when (some-function(some-arg) || some-condition || some-state || some-boolean)
{
do(stuff)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment