Skip to content

Instantly share code, notes, and snippets.

@linjunpop
Last active May 30, 2021 11:14
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 linjunpop/30efbfd874fb1a16176d3f638a1e712a to your computer and use it in GitHub Desktop.
Save linjunpop/30efbfd874fb1a16176d3f638a1e712a to your computer and use it in GitHub Desktop.
obsidian-gist-taste
defmodule Concat do
def join(a, b) do
IO.puts "***First join"
a <> b
end
def join(a, b, sep \\ " ") do
IO.puts "***Second join"
a <> sep <> b
end
end
defmodule Math do
def sum(a, b) do
a + b
end
end
@linjunpop
Copy link
Author

image

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