从 C 语言迁移¶ #include <stdio.h> int main() { printf("Hello world!\n"); return 0; } =>using "std"; fn main() { std.println("Hello world!"); return 0; }