lang0/tests/flowreturnvalueconstant.lang0
Johan B.W. de Vries a184d4c5e3 You can now return a constant string
Rather than having to store it as a variable
2025-02-09 15:03:11 +01:00

10 lines
82 B
Plaintext

func:
return "Success"
/
main:
declare result
calc result func
emit result
/