genode/base-mb/src/test/hello/main.cc

24 lines
413 B
C++

/*
* \brief Hello world
* \author Norman Geske
* \date 2011-02-22
*/
/*
* Copyright (C) 2011-2013 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
/* Genode includes */
#include <base/printf.h>
using namespace Genode;
int main(int argc, char **argv)
{
printf("Hello world!\n");
return 0;
}