Skip to content

Instantly share code, notes, and snippets.

@AndrewRayCode
Created March 24, 2017 22:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save AndrewRayCode/8bf3eeb441c15440044fc40e8cfc2a05 to your computer and use it in GitHub Desktop.
Save AndrewRayCode/8bf3eeb441c15440044fc40e8cfc2a05 to your computer and use it in GitHub Desktop.
def if_statement
a
if condition?
c(
1,
2,
3
)
end
end
def guarded
a
c(
1,
2,
3
) if condition?
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment