We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 533cf44 commit bc594b1Copy full SHA for bc594b1
index.md
@@ -39,12 +39,8 @@
39
打印字符和调用函数:
40
41
```wa
42
-fn main() {
43
- print('凹')
44
- print('语')
45
- print('言')
46
- print('\n')
47
-
+fn main {
+ println("你好,凹语言!")
48
println(add(40, 2))
49
}
50
@@ -57,7 +53,7 @@ fn add(a: i32, b: i32) => i32 {
57
53
58
54
```
59
55
$ go run main.go hello.wa
60
-凹语言
56
+你好,凹语言!
61
62
63
0 commit comments