* Add H++

* Update readme
This commit is contained in:
Matin Zivdar
2022-10-29 20:05:14 +03:30
committed by GitHub
parent 155dfb960d
commit 9b3846516a
2 changed files with 17 additions and 1 deletions

15
h/H++.hpp Normal file
View File

@@ -0,0 +1,15 @@
import "stdhpp\stdapi.hcc";
using printf = Console::WriteLn;
namespace
{
class Application
{
public static void main()
{
printf("Hello World");
return;
}
};
};