just some stuff
1IO.puts(1 + 2)
2IO.puts(5 * 20)
3IO.puts(10 / 2)
4
5IO.puts(:dane)
6IO.puts("some" <> "test")
7
8string = "oh"
9IO.puts("#{string} no!!")
10
11age = 31
12IO.puts("i am #{age}, i am old as shit")
13IO.puts("first line\nsecond line")
14IO.puts(String.length("dane"))
15IO.puts(String.upcase("scream"))