Playing cards: Difference between revisions

m
(→‎{{header|AutoHotkey}}: added AutoHotkey L)
Line 2,197:
deck.(j) <- temp
done</lang>
 
Uses a global variable v to pass around the remaining cards in the deck. If used inside a function this would be a good case for a dynamically-scoped variable (<code>local</code>) rather than the typically-preferred lexical scoping of <code>my</code>.
 
=={{header|PARI/GP}}==