Update intro.md

This commit is contained in:
Seth Pollack 2014-12-11 11:21:48 -05:00
parent c38e73fef5
commit 7676d0164f

View file

@ -155,13 +155,13 @@ when you have unrestricted access to memory. As an example, here's some Ruby
code:
```{ruby}
v = [];
v = []
v.push("Hello");
v.push("Hello")
x = v[0];
x = v[0]
v.push("world");
v.push("world")
puts x
```