/usr/share/hol88-2.02.19940316/Library/taut/taut.ml is in hol88-library-source 2.02.19940316-15.
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 21 22 | % ===================================================================== %
% FILE : taut.ml %
% DESCRIPTION : loads the library "taut" into hol. %
% %
% AUTHOR : R.J.Boulton %
% DATE : 9th July 1991 %
% ===================================================================== %
% --------------------------------------------------------------------- %
% Add the taut help files to online help. %
% --------------------------------------------------------------------- %
let path = library_pathname() ^ `/taut/help/entries/` in
print_string `Updating help search path`; print_newline();
set_help_search_path (union [path] (help_search_path()));;
% --------------------------------------------------------------------- %
% Load the compiled code into ml. %
% --------------------------------------------------------------------- %
let path st = library_pathname() ^ `/taut/` ^ st in
load(path `taut_check`, get_flag_value `print_lib`);;
|