summaryrefslogtreecommitdiff
path: root/Source/Applications/Shell/Shell.ns.cpp
blob: e2433cbfdd22e13bb045482da52a2532f4634b8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "Shell.ns.h"

namespace Shell {

FSNode node(0);

u32int run() {
	node = FSNode::getRoot();
	while (1) {
		outvt << node.getName() << " : ";
		String s = invt.readLine();
	}
}

}