Singly-linked list/Traversal: Difference between revisions

added MiniScript comments
m (added whitespace before the table of contents (TOC).)
(added MiniScript comments)
Line 950:
 
=={{header|MiniScript}}==
We're choosing here to use the built-in list type, rather than make our own from scratch, since this is more representative of how one is likely to actually use MiniScript.
<lang MiniScript>listmyList = [2, 4, 6, 8]
for i in listmyList
print i
end for</lang>
222

edits