view teststring.rhope @ 148:f582fd6c75ee

Fixed framework port, works for said.rhope example
author Mike Pavone <pavone@retrodev.com>
date Mon, 22 Nov 2010 01:37:05 -0500
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"]
			}
		}}}
	}}}}
}