toaruos/apps/demo.c

15 lines
414 B
C

/**
* @brief Simple executable that was used during initial testing of Misaka.
*
* @copyright
* This file is part of ToaruOS and is released under the terms
* of the NCSA / University of Illinois License - see LICENSE.md
* Copyright (C) 2021 K. Lange
*/
#include <stdio.h>
int main(int argc, char * argv[]) {
printf("Hello, world! I am %s! I was called with '%s'\n", argv[0], argv[1]);
return 0;
}