Saving all output to "!!{outputDirectory}!!/udf_div.q.raw". Enter "record" with no arguments to stop it. >>> !run !!{qFileDirectory}!!/udf_div.q >>> DESCRIBE FUNCTION div; 'tab_name' 'a div b - Divide a by b rounded to the long integer' 1 row selected >>> DESCRIBE FUNCTION EXTENDED div; 'tab_name' 'a div b - Divide a by b rounded to the long integer' 'Example:' ' > SELECT 3 div 2 FROM src LIMIT 1;' ' 1' 4 rows selected >>> >>> SELECT 3 DIV 2 FROM SRC LIMIT 1; '_c0' '1' 1 row selected >>> !record