]> gitweb.factorcode.org Git - factor.git/blob - extra/hexdump/hexdump-docs.factor
Initial import
[factor.git] / extra / hexdump / hexdump-docs.factor
1 USING: help.markup help.syntax hexdump kernel ;
2
3 HELP: hexdump.
4 { $values { "seq" "a sequence" } }
5 { $description "Converts a sequence to its hexadecimal and ASCII representation sixteen characters at a time and writes it to standard out." } ;
6
7 HELP: hexdump
8 { $values { "seq" "a sequence" } { "str" "a string" } }
9 { $description "Converts a sequence to its hexadecimal and ASCII representation sixteen characters at a time.  Lines are separated by a newline character." }
10 { $see-also hexdump. } ;
11