t3x.org / t3x / t3x-manual / 3A1.html
 
T3X - A Minimum Procedural Language
Version 8.1.5, Online Edition
Copyright(C) 1996-2004
Nils M Holm
 
Previous:
3.10 SYSTEM -- System Interface
TOC | Index | Back Next:
3.10.2 INIT

3.10.1 SYSTEM Class Usage

OBJECT SYS[SYSTEM];
SYS.INIT();

The SYSTEM class contains a set of procedures which form a (more or less) portable interface to the operating system. Most procedures have the same names and functions as Unix system calls. Some functions may be unavailable on non-Unix systems.

The SYSTEM class must be initialized using SYS.INIT and shut down by calling SYS.FINI.

SYSTEM does not contain any variables. Therefore, it is sufficient to create a single instance per module.

Previous:
3.10 SYSTEM -- System Interface
TOC | Index | Back Next:
3.10.2 INIT