1# $Id$
2
3# prints $arg0 to standard output
4define v
5call rep_print_val(Fstdout_file(), $arg0)
6call rep_stream_putc(Fstdout_file(), '\n')
7end
8
9# prints the lisp backtrace
10define lbt
11call Fbacktrace(Fstdout_file())
12call rep_stream_putc(Fstdout_file(), '\n')
13end
14