From 1e4b2b34e700842c6c0ee434aae913caec157b5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?mafan=EF=BC=88=E9=BA=BB=E5=87=A1=EF=BC=89?= Date: Thu, 11 Aug 2022 14:35:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=AC=AC=E4=B8=80=E7=AB=A0?= =?UTF-8?q?=E9=A2=98=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../helloword.md" | 6 ++-- .../var.json" | 6 ++++ .../var.md" | 29 +++++++++++++++++++ 3 files changed, 38 insertions(+), 3 deletions(-) create mode 100644 "data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/1.go\345\217\230\351\207\217\345\222\214\345\270\270\351\207\217/var.json" create mode 100644 "data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/1.go\345\217\230\351\207\217\345\222\214\345\270\270\351\207\217/var.md" diff --git "a/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/1.\345\277\253\351\200\237\344\270\212\346\211\213/3.\347\254\254\344\270\200\350\241\214go\344\273\243\347\240\201/helloword.md" "b/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/1.\345\277\253\351\200\237\344\270\212\346\211\213/3.\347\254\254\344\270\200\350\241\214go\344\273\243\347\240\201/helloword.md" index dfb7d10..cc9bb95 100644 --- "a/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/1.\345\277\253\351\200\237\344\270\212\346\211\213/3.\347\254\254\344\270\200\350\241\214go\344\273\243\347\240\201/helloword.md" +++ "b/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/1.\345\277\253\351\200\237\344\270\212\346\211\213/3.\347\254\254\344\270\200\350\241\214go\344\273\243\347\240\201/helloword.md" @@ -3,9 +3,6 @@ ## 答案 -goland - -## 选项 ```go package main @@ -15,6 +12,9 @@ func main() { } ``` + +## 选项 + ### A ```go diff --git "a/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/1.go\345\217\230\351\207\217\345\222\214\345\270\270\351\207\217/var.json" "b/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/1.go\345\217\230\351\207\217\345\222\214\345\270\270\351\207\217/var.json" new file mode 100644 index 0000000..b0867d6 --- /dev/null +++ "b/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/1.go\345\217\230\351\207\217\345\222\214\345\270\270\351\207\217/var.json" @@ -0,0 +1,6 @@ +{ + "type": "code_options", + "author": "dengmengmian", + "source": "var.md", + "notebook_enable": false +} \ No newline at end of file diff --git "a/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/1.go\345\217\230\351\207\217\345\222\214\345\270\270\351\207\217/var.md" "b/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/1.go\345\217\230\351\207\217\345\222\214\345\270\270\351\207\217/var.md" new file mode 100644 index 0000000..4c6d927 --- /dev/null +++ "b/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/1.go\345\217\230\351\207\217\345\222\214\345\270\270\351\207\217/var.md" @@ -0,0 +1,29 @@ +# 变量 +声明字符串变量,下面语法正确的是: + +## 答案 + +`var name string` + +## 选项 + +### A + +```go + +var string name + +``` +### B + +```go + +var String name + +``` + +### C + +```go +var name String +``` -- GitLab