11 lines
176 B
C
11 lines
176 B
C
|
// hello, world
|
||
|
#include <lib/print.h>
|
||
|
#include <lib/type.h>
|
||
|
#include <lib/syscall.h>
|
||
|
|
||
|
int main(int argc, char *argv[], char *envp[])
|
||
|
{
|
||
|
printf("hello, world\n");
|
||
|
return 0;
|
||
|
}
|