15 lines
221 B
C++
15 lines
221 B
C++
![]() |
import "stdhpp\stdapi.hcc";
|
||
|
|
||
|
using printf = Console::WriteLn;
|
||
|
|
||
|
namespace
|
||
|
{
|
||
|
class Application
|
||
|
{
|
||
|
public static void main()
|
||
|
{
|
||
|
printf("Hello World");
|
||
|
return;
|
||
|
}
|
||
|
};
|
||
|
};
|