import
You can use import to load definitions from another file.
public fun say_hello() { println("Hello!") }
import "./greetings.gdn" as g g::say_hello()
You can also load all the definitions into the current file.
import "./greetings.gdn" say_hello()