Hello World!
As customary in all things programming/IT, it starts off with a simple “Hello World!” printed to the screen or console. Below will be some of the languages that I have learned to love over the years.
Elixir
defmodule Hello do
def SayIt do
IO.puts "Hello World!"
end
end
Python
#!/usr/bin/python3
print("Hello World!")
C
#include <stdio.h>
int main()
{
// prints hello world
printf("Hello World");
return 0;
}