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 5f2801cdc1119188cb47a98f767d7aa71b4f5c2d..0f2d235874bf39ea08fc71746c96dcdc622df345 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 0000000000000000000000000000000000000000..04672ac7494481ff848fa7635e984a7a36760c97 --- /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 0000000000000000000000000000000000000000..fcfcc377fd0ee07a0cfa2b2c336e8c6c84b0e45a --- /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" + ) +```