Add simple hello world application
This commit is contained in:
6
src/app/hello/main.cc
Normal file
6
src/app/hello/main.cc
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <base/component.h>
|
||||
|
||||
void Component::construct(Genode::Env &env)
|
||||
{
|
||||
Genode::log("Hello World!");
|
||||
}
|
||||
3
src/app/hello/target.mk
Normal file
3
src/app/hello/target.mk
Normal file
@@ -0,0 +1,3 @@
|
||||
TARGET = hello
|
||||
SRC_CC = main.cc
|
||||
LIBS = base
|
||||
Reference in New Issue
Block a user