回答編集履歴
1
Fix typo
test
CHANGED
@@ -10,13 +10,13 @@
|
|
10
10
|
|
11
11
|
unless n == 3
|
12
12
|
|
13
|
-
ret.con
|
13
|
+
ret.concat "hello"
|
14
14
|
|
15
15
|
end
|
16
16
|
|
17
17
|
if n == 5
|
18
18
|
|
19
|
-
ret.con
|
19
|
+
ret.concat "world"
|
20
20
|
|
21
21
|
end
|
22
22
|
|
@@ -36,6 +36,8 @@
|
|
36
36
|
|
37
37
|
puts str
|
38
38
|
|
39
|
+
=> hellohelloworld
|
40
|
+
|
39
41
|
```
|
40
42
|
|
41
43
|
こちらに実際に動くコードをおいていおきます。(ページ上部のRunボタンをクリックすると動きます)
|