* Remove deprecated syntax Signed-off-by: Nick Cameron <nrc@ncameron.org> * fix one test * fix sketch on revolved face test * fix test: empty-scene default-planes act as expected * fix up more tests * another fix * remove another const --------- Signed-off-by: Nick Cameron <nrc@ncameron.org> Co-authored-by: Kurt Hutten Irev-Dev <k.hutten@protonmail.ch>
14 lines
274 B
Plaintext
14 lines
274 B
Plaintext
# full
|
|
|
|
fn two() {
|
|
return 2
|
|
}
|
|
|
|
==>
|
|
|
|
Program(FunctionDeclaration(fn,
|
|
VariableDefinition,
|
|
ParamList,
|
|
Body(ReturnStatement(return,
|
|
Number))))
|