CDuce/Directives
< CDuce
#help
editThe CDuce directive #help lists the available toplevel directives:
#help;; Toplevel directives: #quit;; quit the interpreter #env;; dump current environment #reinit_ns;; reinitialize namespace processing #help;; shows this help message #print_type <type>;; #silent;; turn off outputs from the toplevel #verbose;; turn on outputs from the toplevel #builtins;; shows embedded OCaml values
#quit
editThe CDuce directive #quit permits to quit (e.g. exit) the toplevel interpreter. The keys Ctrl-C and Ctrl-D do the same thing.
#env
editThe CDuce directive #env lists among other things the defined types.
#env;; Types: Namespaces AnyXml String Record Latin1 Empty Arrow Float Pair Char Atom Bool Byte Any Int ...
#print_type
editThe CDuce directive #print_type shows a representation of a CDuce type.
#print_type String;; [ Char* ]