==== PICK3 ==== ---- ---- Duplicate object at level 3 on the stack ---- ^ __Input Stack__ ^^^ ^ __Output Stack__ ^^^^ | **O3** | **O2** | **O1** | **→** | **O3** | **O2** | **O1** | **O3** | | //Level 3// | //Level 2// | //Level 1// | //→// | //Level 4// | //Level 3// | //Level 2// | //Level 1// | {{page>manual:chapter6:aux:legend&nofooter&noeditbtn&inline}} |**Type**| [[manual:chapter5:basics#commands|Command]] || |**Parallel list processing**| [[manual:chapter5:listproc#group-2commands-that-must-use-dolist-to-parallel-process|Group 2]] || |**Affected by flags**| None || ---- The ''PICK3'' command creates a duplicate of the object on the third level of the stack. ---- This command is fully compatible with userRPL. ---- 3: "This is a string" 2: { 'X' 'Y' 'Z' } 1: 1_m …………………………………………………………………………………… PICK3 will result in 4: "This is a string" 3: { 'X' 'Y' 'Z' } 2: 1_m 1: "This is a string" …………………………………………………………………………………… ---- {{page>manual:chapter6:stack&nofooter&noeditbtn&inline}}