Current section
Files
Jump to
Current section
Files
lib/examples.ex
defmodule Examples do
def main() do
# Output:
# A New Hope
# Attack of the Clones
# The Phantom Menace
# ...
Swapi.get_all_films()
|> Enum.each(fn f -> IO.puts("#{f["title"]}") end)
# Output:
# Alderaan
# Yavin IV
# Hoth
# ...
Swapi.get_all_planets()
|> Enum.each(fn p -> IO.puts("#{p["name"]}") end)
# Output:
# Hutt: Huttese
# Yoda's species: Galactic basic
# Trandoshan: Dosh
Swapi.get_all_species()
|> Enum.each(fn s -> IO.puts("#{s["name"]}: #{s["language"]}") end)
end
end