编译 Racket 字节码挂起
我试图将 Racket 字节码编译为可执行文件。但是,当我输入racket parser_rkt.zo
时,没有任何显示,但光标一直闪烁......这可能是什么原因?
顺便说一句,我没有源代码,只有编译后的代码。
I was trying to compile Racket bytecode to excecutable. However, when I typed racket parser_rkt.zo
, then there was nothing showing but the cursor kept flashing...What reasons can it be?
btw, I have no source code, but just the compiled one.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
程序可能只是在等待输入。运行racket parser_rkt.zo 确实会运行该程序,因此如果它没有产生任何结果,这可能就是程序的行为方式。
Probably the program is simply waiting for input. Running
racket parser_rkt.zo
does run that program, so if it doesn't produce anything, that's probably just how the program behaves.