Created
August 21, 2019 15:25
-
-
Save marukun318/d74bc69184f316bd7413c484c03001a9 to your computer and use it in GitHub Desktop.
C+/CLI テスト
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#using <mscorlib.dll> | |
using namespace System; | |
using namespace System::Collections::Generic; | |
using namespace System::Diagnostics; | |
#include <stdio.h> | |
/// C++/CLI テスト | |
int main(array<System::String ^> ^args) | |
{ | |
Console::WriteLine("Hello, World !"); | |
printf("Hello, World !\n"); | |
Debug::WriteLine("Debug Output"); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment