view samples/testdict.tp @ 333:577406b25f89

Added binding for SDL_SetTextureColorMod and SDL_GetTextureColorMod and updated the Freetype sample to use it for setting the color of text
author Michael Pavone <pavone@retrodev.com>
date Sun, 29 Mar 2015 09:43:24 -0700
parents 6735db9b44ba
children
line wrap: on
line source

#{
	main <- {
		foo <- dict linear:
		foo set: "key1" "val1"
		foo set: "key2" "val2"
		foreach: foo :k :v {
			print: k . ", " . v . "\n"
		}

	}
}