(define) evaluates definition
[sandbox] / integration_tests / 0004_define_evaluates_definition.stt
1 (define hello-world "Hello, world")
2 (define hello-world-copy hello-world)
3 (print hello-world-copy)
4 0