Files
modeling-app/rust/kcl-lib/tests/import_cycle1/import_cycle3.kcl

7 lines
116 B
Plaintext
Raw Normal View History

@settings(defaultLengthUnit = in)
import one from "input.kcl"
export fn three() {
return one() + one() + one()
}