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 :)
helloworld.c:
/*
* File: helloworld.c
* Description: Greets the StackExchange community
*/
#include <stdio.h>
int main(void) {
puts("Hello, World!");
return 0;
}