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

8 lines
151 B
C++
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
using namespace System::Windows::Forms;
int main(array<System::String^> ^args)
{
MessageBox::Show("Goodbye, World!", "Rosetta Code");
2013-10-27 22:24:23 +00:00
return 0;
2013-04-10 21:29:02 -07:00
}