RosettaCodeData/Task/Reflection-List-methods/Factor/reflection-list-methods.factor
2023-07-01 13:44:08 -04:00

7 lines
193 B
Factor

USING: io math prettyprint see ;
"The list of methods contained in the generic word + :" print
\ + methods . nl
"The list of methods specializing on the fixnum class:" print
fixnum methods .