// 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;
}