mirror of
https://github.com/odin-lang/Odin.git
synced 2026-08-14 09:44:26 +00:00
10 lines
185 B
Odin
10 lines
185 B
Odin
// Tests issue #7167 https://github.com/odin-lang/Odin/issues/7167
|
|
package test_issues
|
|
|
|
import "core:fmt"
|
|
import "core:path/filepath"
|
|
|
|
main :: proc() {
|
|
fmt.printf(filepath.join({}))
|
|
}
|