summaryrefslogtreecommitdiff
path: root/example/main.c
blob: ac68bd23e0238949e641891f3a407ab592ce0220 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "turtle.h"
int main (void) {
	if (loadmap("map") != 0 ) {
		printf("%d",1);
	}
	go(3);
	turn(LEFT);
	go(5);
	turn(DOWN);
	go(7);
	turn(RIGHT);
	go(8);
	return 0;
}