summaryrefslogtreecommitdiff
path: root/NT/src/rotor.cpp
blob: f13f700d22174d30939f9174d462f5dd91001c44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>

#include "rotor.h"

using namespace std;
using namespace Rotor;

int main(){
	a_node a;
	map<string,string> settings={{"p1","1"}, {"p2","2"}, {"p3","3"}};
	a.init(settings);
	printf("hello, world\n");
}