Files
modeling-app/example.bing

15 lines
230 B
Plaintext
Raw Normal View History

2022-11-12 13:11:54 +11:00
const totalHeight = 5
const xVal = 3 + 2
sketch MySketch(myVar = 5) {
start(0, 0)
lineTo(5, myVar)
horzLineTo(10)
vertLineTo(0)
close()
}
const mySketch = MySketch(totalHeight)
print(`print worked: `, xVal)