Modula-2 Reloaded

A Modern Typesafe & Literate Programming Notation

Site Menu

Project

Specification

Implementation

Recommendations

Reference

Needs Updating

Work in Progress

Wastebasket

Wiki Manual

edit SideBar

Pervasive IO

DEFINITION MODULE PervasiveIO;

(* Aggregator Module for Pervasive I/O Operations *)

(* Import all pervasive IO modules into the importing module. *)

IMPORT BOOLEAN+;
(* Imports IO module for pervasive type BOOLEAN into the importing module. *)

IMPORT BITSET+;
(* Imports IO module for pervasive type BITSET into the importing module. *)

IMPORT LONGBITSET+;
(* Imports IO module for pervasive type LONGBITSET into the importing module.*)

IMPORT CHAR+;
(* Imports IO module for pervasive type CHAR into the importing module. *)

IMPORT UNICHAR+;
(* Imports IO module for pervasive type UNICHAR into the importing module. *)

IMPORT OCTET+;
(* Imports IO module for pervasive type OCTET into the importing module. *)

IMPORT CARDINAL+;
(* Imports IO module for pervasive type CARDINAL into the importing module. *)

IMPORT LONGCARD+;
(* Imports IO module for pervasive type LONGCARD into the importing module. *)

IMPORT INTEGER+;
(* Imports IO module for pervasive type INTEGER into the importing module. *)

IMPORT LONGINT+;
(* Imports IO module for pervasive type LONGINT into the importing module. *)

IMPORT REAL+;
(* Imports IO module for pervasive type REAL into the importing module. *)

IMPORT LONGREAL+;
(* Imports IO module for pervasive type LONGREAL into the importing module. *)

END PervasiveIO.