summaryrefslogtreecommitdiff
path: root/Source/Applications/Shell/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Applications/Shell/main.cpp')
-rw-r--r--Source/Applications/Shell/main.cpp12
1 files changed, 2 insertions, 10 deletions
diff --git a/Source/Applications/Shell/main.cpp b/Source/Applications/Shell/main.cpp
index fabf30c..70da17b 100644
--- a/Source/Applications/Shell/main.cpp
+++ b/Source/Applications/Shell/main.cpp
@@ -1,13 +1,5 @@
-#include <Binding/VirtualTerminal.class.h>
-#include <Binding/FSNode.class.h>
-#include <String.class.h>
+#include "Shell.ns.h"
int main() {
- VirtualTerminal vt = VirtualTerminal::get();
- FSNode node = FSNode::getRoot();
- while (1) {
- vt << node.getName() << " : ";
- String s = vt.readLine();
- }
- return 0;
+ return Shell::run();
}