14 lines
193 B
C
14 lines
193 B
C
/**
|
|
* \file
|
|
* \brief shelly - a shell process
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <aos/aos.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
debug_printf("welcome to shelly!\n");
|
|
} |