質問編集履歴

2

言語の修正

2016/07/22 13:52

投稿

damalnylpo
damalnylpo

スコア53

test CHANGED
File without changes
test CHANGED
@@ -88,7 +88,13 @@
88
88
 
89
89
  golangでいえば
90
90
 
91
+ ```go
92
+
91
- "Join concatenates the elements of a to create a single string. The separator string sep is placed between elements in the resulting string."
93
+ //Join concatenates the elements of a to create a single string. The separator string sep is placed between elements in the resulting string."
94
+
95
+ func Join(a []string,sep string)string
96
+
97
+ ```
92
98
 
93
99
  個人的にこれが無難な気はしますが
94
100
 

1

文法の修正

2016/07/22 13:52

投稿

damalnylpo
damalnylpo

スコア53

test CHANGED
File without changes
test CHANGED
@@ -30,9 +30,9 @@
30
30
 
31
31
  上記のようにPerlでは配列が後に置かれます。
32
32
 
33
- Perlは配列の扱いが可変長引数と近いので
33
+ Perlは配列の扱いが可変長引数と近く、
34
34
 
35
- 最後に置かれるので配列が最後に来るのは言語的な部分があると思うので
35
+ 配列が最後に来るのは言語的な部分があるので
36
36
 
37
37
  golangの順番が一般的にも妥当だとかもしれませんが
38
38