Clojure repl 中的先前表达式
在 python repl 中,获取先前输入表达式的结果很容易:
>>> 1+2
3
>>> _
3
>>>
Is there a way to do this in the clojure repl?
In the python repl, getting the result of the previously input expression is easy:
>>> 1+2
3
>>> _
3
>>>
Is there a way to do this in the clojure repl?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应该做!同样,您也可以访问
*2
和*3
。Should do it! Similarly, you have access to
*2
and*3
as well.