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 834b949 commit 82f5a35Copy full SHA for 82f5a35
README.md
@@ -343,9 +343,27 @@ Go Playground 允许在浏览器里面编辑运行 Go 语言代码。在浏览
343
344
## 格式化输入输出
345
346
+
347
+<details>
348
+<summary>输入输出语法方法</summary>
349
350
> `%[标记][宽度][.精度][arg索引]动词`
351
> `Print(arg列表)`、`Println(arg列表)`、`Printf(格式字符串, arg列表)`
352
353
+```go
354
+package main
355
+import (
356
+ "fmt"
357
+ "time"
358
+)
359
+func main() {
360
+ fmt.Println("Hello World!")
361
+ fmt.Println("The time is", time.Now())
362
+}
363
+```
364
365
+</details>
366
367
<details>
368
<summary>标记</summary>
369
0 commit comments