Server Guide

Examples

Example 1

Displays a status message on the System Transcript window or on the CICS terminal, depending on where it is issued.

CICSTTY show: 'Your Smalltalk code is running on CICS/ESA.'; cr.

Example 2

Displays a status message on the System Transcript window or on the CICS terminal, depending on where it is issued.

CICSTTY cr;
        nextPutAll: 'Your Smalltalk program is running on CICS';
        nextPut: '/';
        nextPutAll: 'ESA.';
        space: 2;
        nextPutAll: 'Congratulations!';
        flush.


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]