[E-Lang] Syntax Reductions: Consensus so far

Tyler Close tclose@oilspace.com
Tue, 6 Mar 2001 10:23:37 -0000


I (Tyler) wrote:
> class ThingMaker() :any {
> 
> 	# This is a private method.
> 	to bar() { ... }
> 
> 	def Thing() {
> 
> 		# This is a public method.
> 		to foo() { ... }
> 	}
> }

Ooops. Make that:

class ThingMaker() :any {
 
 	# This is a private method.
 	to bar() { ... }
 
 	def Thing {
 
 		# This is a public method.
 		to foo() { ... }
 	}
 }

Tyler