From 1fe078859004d2003b8a0bb3189dcc0acf204c64 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:43:06 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=B8=B8=E9=87=8F=E5=92=8C?= =?UTF-8?q?=E5=8F=98=E9=87=8F=E9=A2=98=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../version.json" | 10 +++--- .../const.json" | 6 ++++ .../const.md" | 33 +++++++++++++++++++ 3 files changed, 44 insertions(+), 5 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/const.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/const.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/1.Go\345\256\211\350\243\205\344\270\216\351\205\215\347\275\256/version.json" "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/1.Go\345\256\211\350\243\205\344\270\216\351\205\215\347\275\256/version.json" index 5f2801c..0f2d235 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/1.Go\345\256\211\350\243\205\344\270\216\351\205\215\347\275\256/version.json" +++ "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/1.Go\345\256\211\350\243\205\344\270\216\351\205\215\347\275\256/version.json" @@ -1,7 +1,7 @@ { - "type": "code_options", - "author": "dengmengmian", - "source": "version.md", - "notebook_enable": false, - "exercise_id": "9d7860ed625c4fe1b3d60b7a84be1803" + "type": "code_options", + "author": "dengmengmian", + "source": "version.md", + "notebook_enable": false, + "exercise_id": "9d7860ed625c4fe1b3d60b7a84be1803" } \ 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/const.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/const.json" new file mode 100644 index 0000000..04672ac --- /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/const.json" @@ -0,0 +1,6 @@ +{ + "type": "code_options", + "author": "dengmengmian", + "source": "const.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/const.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/const.md" new file mode 100644 index 0000000..fcfcc37 --- /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/const.md" @@ -0,0 +1,33 @@ +# 变量 +以下常量声明不正确的是: + +## 答案 + +`var b string = "abc"` + +## 选项 + +### A + +```go + +const b string = "abc" + +``` +### B + +```go + +const PI = 3.14159 + +``` + +### C + +```go +const ( + name = "gotribe.cn" + age = 1 + country = "bejing" + ) +``` -- GitLab