Files
modeling-app/src/wasm-lib/kcl/tests/import_cycle1/input.kcl

6 lines
82 B
Plaintext
Raw Normal View History

import two from "import_cycle2.kcl"
export fn one = () => {
return two() - 1
}