File: defaultprint.mpi

package info (click to toggle)
mathpiper 0.0.svn2556-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 7,416 kB
  • ctags: 2,729
  • sloc: java: 21,643; xml: 751; sh: 105; makefile: 5
file content (11 lines) | stat: -rw-r--r-- 182 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
/// The new default pretty-printer: DefaultPrint
Function("DefaultPrint", {x})
[
	DumpErrors();
	WriteString("Out> ");
	Write(x);
	WriteString(";
");
];
HoldArg("DefaultPrint", x);