xgo/testdata/cli/two/five/five.tengo
Ozan Hacıbekiroğlu 4ed75764ce
enable relative imports (#285)
* enable relative imports

* update per 1st review

* remove symlink stuffs

* fix cli run in make file

* make resolving import path explicit

* fix importDir
2020-05-22 13:57:38 -07:00

7 lines
No EOL
143 B
Text

export {
fn: func(...args) {
text := import("text")
args = append(args, "five")
return text.join(args, " ")
}
}