RosettaCodeData/Task/Hello-world-Graphical/C++-CLI/hello-world-graphical.cpp
Ingy döt Net 776bba907c Sync
2013-10-27 22:24:23 +00:00

7 lines
151 B
C++

using namespace System::Windows::Forms;
int main(array<System::String^> ^args)
{
MessageBox::Show("Goodbye, World!", "Rosetta Code");
return 0;
}