Matin Zivdar 9b3846516a
Add H++ (#1421)
* Add H++

* Update readme
2022-10-29 11:35:14 -05:00

15 lines
221 B
C++

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