Queue/Usage: Difference between revisions

Line 76:
 
=={{header|AutoHotkey}}==
{{incorrect|AutoHotkey|AutoHotkey does not come with a fifo.ahk file, nor does this example mention where it could be found.}}
 
ahk forum: [http://www.autohotkey.com/forum/viewtopic.php?t=44657&postdays=0&postorder=asc&start=133 discussion]
<lang AutoHotkey>push("st",2),push("st",4) ; TEST: push 2 and 4 onto stack named "st"
Line 82 ⟶ 84:
MsgBox % pop("st") ; Empty
MsgBox %ErrorLevel% ; ErrorLevel = 1: popped too much
#Include fifo.ahk</lang>
 
=={{header|C}}==
Anonymous user