note alias for STO

This commit is contained in:
Gwenhael Le Moine 2021-11-24 16:48:51 +01:00
parent b7d748ac5d
commit 803036b89e
No known key found for this signature in database
GPG key ID: FDFE3669426707A7

View file

@ -133,6 +133,7 @@ module Rpl
# STORE
add( 'sto', proc { |stack| Rpl::Core.__todo( stack ) } ) # store a variable. ex: 1 'name' sto
add( '▶', proc { |stack| Rpl::Core.__todo( stack ) } ) # alias
add( 'rcl', proc { |stack| Rpl::Core.__todo( stack ) } ) # recall a variable. ex: 'name' rcl
add( 'purge', proc { |stack| Rpl::Core.__todo( stack ) } ) # delete a variable. ex: 'name' purge
add( 'vars', proc { |stack| Rpl::Core.__todo( stack ) } ) # list all variables