weekly 2023-12-112023年12月11日 · 阅读需 2 分钟 MoonBit更新 1. 支持使用 type 关键字定义 newtype type MyInt Int derive(Show)fn init { let x = MyInt::MyInt(5) println(x) // Output: MyInt(5) println(x.0) // Output: 5}