aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
blob: d7709e2092df15c5548fb299e06522a9e00a99b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <cstdio>
// #include "Observer.h"
#include "Net.h"

int main(int argc, char** argv) {
	// Observer ob();
	Net n;
	// n.setLevel(HIGH);
	int level = 22;
	level = n.getLevel();
	printf("hello world! %d\n", level);
	return 0;
}