mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-14 18:02:22 -07:00
10 lines
161 B
Odin
10 lines
161 B
Odin
#import "fmt.odin";
|
|
|
|
main :: proc() {
|
|
fmt.println(foo("FOO"));
|
|
}
|
|
|
|
foo :: proc(test: string, test1: string, args: ...any) { }
|
|
|
|
foo :: proc(test: string) { }
|