Files
Odin/code/demo.odin

8 lines
94 B
Odin

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