userspace programs are now in userspace/programs userspace tests are now in userspace/tests This makes listing userspace projects much cleaner. Libraries were already separated to their own directory, so other programs should also.
8 lines
75 B
C++
8 lines
75 B
C++
#include "Terminal.h"
|
|
|
|
int main()
|
|
{
|
|
Terminal terminal;
|
|
terminal.run();
|
|
}
|