Zorgatone

135
reputation
7

I just love code, videogames and TTRPGs, and I like C/C++, C# and JavaScript/TypeScript.

At the moment I'm a student at the University of Turin, and I also work as a Senior Full Stack Web Developer / Consultant at Orbyta Srl. I am studying to switch to videogames programming and try to one day make my own videogame business a reality :)

NerdTests.com says I'm a Highly Dorky High Nerd.  Click here to take the Nerd Test, get nerdy images and jokes, and write on the nerd forum! I am nerdier than 95% of all people. Are you a nerd? Click here to take the Nerd Test, get geeky images and jokes, and write on the nerd forum!

helloworld.c:

/*
* File: helloworld.c
* Description: Greets the StackExchange community
*/

#include <stdio.h>

int main(void) {
    puts("Hello, World!");

    return 0;
}