2018-02-02 20:00:33 +04:00
|
|
|
parameter string;
|
|
|
|
storage string;
|
|
|
|
code {DUP; # We're going to need both the storage and parameter
|
|
|
|
CAR; # Get the parameter
|
2018-04-05 19:17:27 +04:00
|
|
|
DIP{CDR}; # Get the storage value
|
2018-02-02 20:00:33 +04:00
|
|
|
SWAP; # Get the order we want (this is optional)
|
|
|
|
CONCAT; # Concatenate the strings
|
2018-04-05 19:17:27 +04:00
|
|
|
NIL operation; PAIR} # Match the calling convention
|