Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
按照 ReasonML 快速启动页面上的说明,该命令npm run start编译应用程序失败。
npm run start
它表明代码有语法错误。
Reason 现在正在使用一种新的语法。但是快速启动应用程序尚未更新。转到 src > demo.re 并更改行:
Js.log "Hello world";
像这样:
Js.log("Hello World");