Newsgroups: comp.lang.smalltalk
Path: cantaloupe.srv.cs.cmu.edu!das-news2.harvard.edu!news2.near.net!howland.reston.ans.net!ix.netcom.com!netcom.com!mbondr
From: mbondr@netcom.com (Mark Bondurant)
Subject: Newbie IBM Visual Smalltalk question
Message-ID: <mbondrD5JKG8.MEH@netcom.com>
Organization: NETCOM On-line Communication Services (408 261-4700 guest)
Date: Thu, 16 Mar 1995 16:28:56 GMT
Lines: 15
Sender: mbondr@netcom11.netcom.com

I'm trying to declare a temporary variable inside a block and I can't
seem to get it to work.  The Bluebook says that I should do something
like this:

	[ var | <block stuff> ] value 1.

My teacher says that the new ANSI standard will allow us to do 
something like this:

	[ var1 | var2 | var1 := 1. var2 := 2. <block stuff> ].

Neither of these work.  This is due Saturday morning.

Mark

