Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 284 Bytes

elixir.md

File metadata and controls

25 lines (21 loc) · 284 Bytes

Elixir

Function Declaration

def challenge(x, y, z), do: x + y + z

def challenge x, y, z do
  x + y + z
end

Logging

def challenge x, y, z do
  # TODO
  x + y + z
end

Import

# String.a() <> String.b()
import String
a() <> b()