csmlinterpreter 0.2.0

The CSML (Conversational Standard Meta Language) is a Domain-Specific Language developed for creating conversational experiences easily.
Documentation
start:
	do this_hold		// 0
	if (1) {		// 1
		say "1"		// 2
		if (1) {	// 3
			say "2"	// 4
		}
		do this_hold	// 5
		if (1 == 2) {	// 6
			say "3"	// 7
		}
		else {		// 8
			say "4"	// 9
		}
	}
	else if (2) {		// 10
		say "2"		// 11
		do this_hold	// 12
	}
	else {			// 13
		do this_hold	// 14
		say "3"		// 15
	}
	goto end		// 16
	do this_hold		// 17