RosettaCodeData/Task/Hello-world-Graphical/C++-CLI/hello-world-graphical.cpp

8 lines
151 B
C++

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