apps: Add a hello app
This commit is contained in:
parent
f682258fc9
commit
44bd93b8b4
@ -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
|
||||
|
6
apps/src/hello.c
Normal file
6
apps/src/hello.c
Normal file
@ -0,0 +1,6 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
puts("Hello, world!");
|
||||
}
|
Loading…
Reference in New Issue
Block a user