mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-03 19:52:30 +00:00
8 lines
94 B
Odin
8 lines
94 B
Odin
#import "fmt.odin";
|
|
|
|
main :: proc() {
|
|
x := "-stats";
|
|
y := "-begin";
|
|
fmt.println(x == y);
|
|
}
|