Hello, my name is Rafaela Bezerra, I am a T.I student. This is my first website in a repository, to maintain the tradition that everything starts with Hello world, I made a website with this theme. I had the idea of ​​creating a website in three different languages ​​(english, spanish and portuguese).

Where did this tradition begin?

The first version appeared in a book called: "A tutorial introduction to the language B" by Brian. Later he used the same example, only this time in C language, this book was very successful, selling thousands of copies which popularized the tradition.

    main(){   
        extern a,b,c;
        putchar(a); putchar(b); putchar(c); putchar('!*n');   
     } 
     a 'hell';
     b 'o, w';
     c 'orld'; 

     - First version of the code.