打印函数

最后更新于:2022-04-02 02:05:36

[TOC] ### 打印函数 ``` (define a "abc") (display a) ;abc (print a) ;"abc" ```
';