/usr/share/axiom-20170501/src/algebra/IPRNTPK.spad is in axiom-source 20170501-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | )abbrev package IPRNTPK InternalPrintPackage
++ Author: Themos Tsikas
++ Date Created: 09/09/1998
++ Date Last Updated: 09/09/1998
++ Description:
++ A package to print strings without line-feed nor carriage-return.
InternalPrintPackage() : SIG == CODE where
SIG ==> with
iprint : String -> Void
++ \axiom{iprint(s)} prints \axiom{s} at the current position
++ of the cursor.
CODE ==> add
iprint(s:String) ==
PRINC(coerce(s)@Symbol)$Lisp
FORCE_-OUTPUT()$Lisp
|