factor/extra/hexdump/hexdump-docs.factor

13 lines
503 B
Factor
Raw Normal View History

2008-01-10 21:45:34 -05:00
USING: help.markup help.syntax kernel ;
IN: hexdump
2007-09-20 18:09:08 -04:00
HELP: hexdump.
{ $values { "seq" "a sequence" } }
{ $description "Converts a sequence to its hexadecimal and ASCII representation sixteen characters at a time and writes it to standard out." } ;
HELP: hexdump
{ $values { "seq" "a sequence" } { "str" "a string" } }
{ $description "Converts a sequence to its hexadecimal and ASCII representation sixteen characters at a time. Lines are separated by a newline character." }
{ $see-also hexdump. } ;