View difference between Paste ID: SGDtTPVC and DkhdirL9
SHOW: | | - or go back to the newest paste.
1
# Example 1
2
on "Hello World"
3
	after("Hello ")
4
	erase("l")
5
	print()
6
7
# Example 2
8
vertices = Vector<Float>()
9
10
on vertices
11-
	add x
11+
	add(x)
12-
	add y
12+
	add(y)
13-
	add z
13+
	add(z)