Skip to content

Commit 7676d01

Browse files
committed
Update intro.md
1 parent c38e73f commit 7676d01

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/doc/intro.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -155,13 +155,13 @@ when you have unrestricted access to memory. As an example, here's some Ruby
155155
code:
156156

157157
```{ruby}
158-
v = [];
158+
v = []
159159
160-
v.push("Hello");
160+
v.push("Hello")
161161
162-
x = v[0];
162+
x = v[0]
163163
164-
v.push("world");
164+
v.push("world")
165165
166166
puts x
167167
```

0 commit comments

Comments
 (0)