Join Nostr
2026-01-26 05:16:07 UTC

そらいろ on Nostr: うちもC++おぼえるか〜 そこでまずHello, Worldをやってみ ```cpp ...

うちもC++おぼえるか〜 そこでまずHello, Worldをやってみ

```cpp
using namespace System;

int main()
{
String^ myString = gcnew String("Hello, World!");
Console::WriteLine(myString);
return 0;
}
```