genode-ehmry/app/hello-world/component.cc

9 lines
148 B
C++
Raw Normal View History

2019-03-07 17:52:06 +01:00
/* Genode includes */
#include <base/component.h>
#include <base/log.h>
void Component::construct(Genode::Env &)
{
Genode::log("Hello world!");
}