mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-20 12:44:59 -07:00
8 lines
94 B
Odin
8 lines
94 B
Odin
package demo
|
|
|
|
import "core:fmt"
|
|
|
|
main :: proc() {
|
|
fmt.println("Hellope!", 123, true, 1.3);
|
|
}
|