diff --git a/apps/Makefile b/apps/Makefile index 384ce943..75ce6d09 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -1,4 +1,4 @@ -APPS := init sym sh crash uname uptime +APPS := init sym sh crash uname uptime hello APPS_DIR := $(LUNA_ROOT)/apps APPS_SRC := $(APPS_DIR)/src diff --git a/apps/src/hello.c b/apps/src/hello.c new file mode 100644 index 00000000..50106f10 --- /dev/null +++ b/apps/src/hello.c @@ -0,0 +1,6 @@ +#include + +int main() +{ + puts("Hello, world!"); +} \ No newline at end of file