aboutsummaryrefslogtreecommitdiff
path: root/code/demo.odin
blob: 420ce5533448a73407cd17a11241009a2e21f378 (plain)
1
2
3
4
5
6
7
#import "fmt.odin";

main :: proc() {
	x := "-stats";
	y := "-begin";
	fmt.println(x == y);
}