All public logs

Jump to navigation Jump to search

Combined display of all available logs of Elixir Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 14:17, 3 December 2023 Elixirfan talk contribs created page Hello World in Elixir (Created page with "'''Hello World in Elixir''' Hello World programs are traditionally used to introduce beginners to a programming language. In Elixir, creating a Hello World program is simple. '''Example program:''' ```elixir # A Hello World program in Elixir IO.puts("Hello, World!") ``` The above program uses the `IO.puts/1` function to output the string "Hello, World!" to the console. `IO` is a module in the Elixir standard library that provides I/O operations. To run the program...")