summaryrefslogtreecommitdiff
path: root/sample/aset.rb
blob: 414c13ba701e7971bab8d784e713daa2a74eb564 (plain)
1
2
3
4
5
6
7
# array set example
# output:
#	07045

ary = [0, 0, 4, 5]
ary[1, 0] = [7]
print ary, "\n"