view samples/compilerbug_004.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 38127fbf5f9d
children
line wrap: on
line source

#{
	foo <- 42
	new <- {
		#{
			bar <- foo
		}
	}

	main <- {
		print: (string: ((new: ) bar)) . "\n"
	}

}