-- File: FBasics.mesa - created by JKF. Last edit:
-- JKF                 22-May-86 11:28:16

-- Copyright (C) 1986 by Xerox Corporation. All rights reserved.

FBasics: DEFINITIONS =
  BEGIN

  LibraryProblem: ERROR [s: LONG STRING];

  -- FortranLoaded checks to see if the Fortran I/O, Math and Intrinsic libraries are loaded.  If not, an attempt is made to load them.  Returns FALSE if the Fortran libraries are not and cannot be loaded.

  FortranLoaded: PROC [];

  END...