Category:Ayrch: Difference between revisions

no edit summary
mNo edit summary
No edit summary
Line 24:
 
#include <Core/Core.h>
#include <iostream>
 
using namespace Upp;
 
 
CONSOLE_APP_MAIN
{
// Upp allows you to write C and C++ in the same namespace
const Vector<String>& cmdline = CommandLine();
printf("Hello World\n"); // C
std::cout << "and Hello World" << std::endl; // C++
for(int i = 0; i < cmdline.GetCount(); i++) {
}
 
}