Input test
Testing how the Inputs work with Livebook
IO.gets("name") |> IO.puts()
{num, _fluf} = IO.gets("integer") |> Integer.parse()
num
Mix.install([
{:httpoison, "~> 1.8"}
])
url = IO.gets("url") |> String.trim()
HTTPoison.get(url)
IO.gets("name") |> IO.puts()
{num, _fluf} = IO.gets("integer") |> Integer.parse()
num
Mix.install([
{:httpoison, "~> 1.8"}
])
url = IO.gets("url") |> String.trim()
HTTPoison.get(url)