mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
8 lines
94 B
Odin
8 lines
94 B
Odin
#import "fmt.odin";
|
|
|
|
main :: proc() {
|
|
x := "-stats";
|
|
y := "-begin";
|
|
fmt.println(x == y);
|
|
}
|