Last active
May 30, 2021 11:14
-
-
Save linjunpop/30efbfd874fb1a16176d3f638a1e712a to your computer and use it in GitHub Desktop.
obsidian-gist-taste
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule Math do | |
def sum(a, b) do | |
a + b | |
end | |
end |
Author
linjunpop
commented
May 30, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment