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

8 lines
117 B
Plaintext
Raw Normal View History

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