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