Create Livebook using Claude
Ganesh Sarwate
I have been using Claude Code and other agentic coding assistants for some time now.
Today I thought of creating a creating a very simple (and trivial) Livebook from scratch using Claude Code to see how it genertaes it.
Prompt❯ create elixir livebook to print hello world using elixir
It created hello_world.livemd file with following content
# Hello World
## Section
```elixir
IO.puts("Hello, World!")
```
Prompt❯ Now add an elixir block to print hello from Claude
It updated hello_world.livemd file to add a second Elixir cell that prints Hello from Claude!.
```elixir
IO.puts("Hello from Claude!")
```