view samples/compilerbug_004.tp @ 107:152b6cfb98b6

Click-to-select no longer selects the whole lambda when it shouldn't and no longer replaces the selected code with a single symbol.
author Mike Pavone <pavone@retrodev.com>
date Fri, 12 Apr 2013 19:27:33 -0700
parents 38127fbf5f9d
children
line wrap: on
line source

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

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

}