mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 14:35:06 +00:00

This commit adds a simple project template system to HackStudio, as well as a pretty New Project dialog, inspired by early VS.NET and MS Office.
7 lines
102 B
C++
7 lines
102 B
C++
#include <stdio.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
printf("Hello friends!\n");
|
|
return 0;
|
|
}
|