view teststring.rhope @ 184:c6ba9fe45910

Strip _c from filenames of current compiler
author Mike Pavone <pavone@retrodev.com>
date Wed, 27 Jul 2011 21:28:43 -0700
parents 4d5ea487f810
children
line wrap: on
line source


Main[]
{
	barbaz <- [right]Append["baz"]
	,right <- ["foobar"]Slice[3]
	{ Print[~]
	{ Print[right] 
	{ Print[barbaz]
	{
		bar,baz <- [barbaz]Slice[3]
		{ Print[bar]
		{ Print[baz]
		{
			If[[bar]=[ [["b"]Append["a"]]Append["r"] ]]
			{
				Print["Comparison OK"]
				{
					,delim,after <-["foshizzlemynizzle"]Partition["my"]
					{ Print[~]
					{ Print[delim]
					{ Print[after] }}}
					
				}
			}{
				Print["Comparison failed"]
			}
		}}}
	}}}}
}