Newer
Older
Ruby / hello12.rb
#
#
b=0
a=[b+=1]
a[0]
p(b)
d=e=1
f=a[0]
c=[d,e,f]
c[2]=2
print(c)
p(f)
p(a)