2021-11-26 06:41:56 +03:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
2021-05-31 04:47:02 +03:00
|
|
|
#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;
|
|
|
|
}
|