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

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

2023-07-01 11:58:00 -04:00
using namespace System::Windows::Forms;
int main(array<System::String^> ^args)
{
MessageBox::Show("Goodbye, World!", "Rosetta Code");
return 0;
}