Mix.install([
{:hidden_cell, github: "brooklinjazz/hidden_cell"}
])This notebook contains some instructions for you to write code. And if you need help, there will be some code hidden under a hint, so you can copy'n paste the code solution in case you need it.
Write one line of code that prints Hello World!.
# write you solution here💡 hint
IO.puts("Hello World!")Write a Hello World using a module and function definition.
# write your solution here💡 hint
defmodule HelloWorld do
def run() do
IO.puts("Hello World!")
end
endWrite a Hello World using a module and function definition.
# write your solution heredefmodule HelloWorld do
def run do
IO.puts("Hello World!")
end
end