view samples/compilerbug_002.tp @ 241:c50f77de41d1

Small fix to call to method implemented on current object check
author Mike Pavone <pavone@retrodev.com>
date Sun, 05 Jan 2014 20:54:22 -0800
parents 93ddb4ad6fcb
children
line wrap: on
line source

#{
	value <- 42
	main <- {
		foo <- {
			bar <- {value}
			bar:
		}
		print: (string: (foo: ))
	}
}