mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
30 lines
368 B
Modula-2
30 lines
368 B
Modula-2
|
#
|
||
|
# a definition of instruction unification
|
||
|
#
|
||
|
#
|
||
|
|
||
|
__END__
|
||
|
|
||
|
putobject putobject
|
||
|
putobject putstring
|
||
|
putobject setlocal
|
||
|
putobject setdynamic
|
||
|
|
||
|
putstring putstring
|
||
|
putstring putobject
|
||
|
putstring setlocal
|
||
|
putstring setdynamic
|
||
|
|
||
|
# putnil end
|
||
|
|
||
|
dup setlocal
|
||
|
|
||
|
# from tarai
|
||
|
getlocal getlocal
|
||
|
# getlocal send
|
||
|
|
||
|
# from tak, ackermann
|
||
|
getlocal putobject
|
||
|
|
||
|
|