Skip to content

Instantly share code, notes, and snippets.

@bryansray
Last active February 6, 2016 19:30
Show Gist options
  • Save bryansray/7dca8c24d8752d5eed9b to your computer and use it in GitHub Desktop.
Save bryansray/7dca8c24d8752d5eed9b to your computer and use it in GitHub Desktop.
# you prefer this ...
def this_function() do
IO.puts "Hello, World"
end
# over this ...
def this_function do
IO.puts "Better, World!"
end
@realistschuckle
Copy link

I prefer

def this_function do
  IO.puts("Better World!")
end

'Cause I'm a douche.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment