2008-07-01

variable

Ruby:
# All Ruby variables hold objects.
# Therefore, integers are objects.
a = 1

# Parallel assignment
b, c, d = 2, 3, 4

No comments: