Jump to content

Arrays: Difference between revisions

no edit summary
(Added LOLCODE example)
No edit summary
Line 5,870:
"Check size"
s size printLine.</lang>
 
=={{header|SenseTalk}}==
<lang sensetalk>// Initial creation of an array
set a to (1, 2, 3)
// pushing a value to the array
insert 4 after a
put a -- (1, 2, 3, 4)
put the second item of a -- 2</lang>
 
=={{header|Sidef}}==
Cookies help us deliver our services. By using our services, you agree to our use of cookies.