/*
 * NewSheet.rexx
 * Example-ARexx-Script of TurboCalc2.0   © 1993 by M.Friedrich
 *
 * This examples opens a new sheet, puts out some text
 * and closes this sheet (after displaying a message).
 */

Options FailAt 0
Options Results

ADDRESS TCALC

'NEWSHEET "This is an example"'

SELECTCELL B3
'PUT "This is a test"'


MESSAGE '"Opened new sheet via Arexx, confirm to close!"'
'PUT "Good Bye"'

CLOSESHEET 0
