apps: Add a hello app

This commit is contained in:
apio 2022-10-19 21:13:47 +02:00
parent f682258fc9
commit 44bd93b8b4
2 changed files with 7 additions and 1 deletions

View File

@ -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_DIR := $(LUNA_ROOT)/apps
APPS_SRC := $(APPS_DIR)/src APPS_SRC := $(APPS_DIR)/src

6
apps/src/hello.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main()
{
puts("Hello, world!");
}