view teststring.rhope @ 189:d0e3a13c1bd9 default tip

Remove old calculator example
author Mike Pavone <pavone@retrodev.com>
date Fri, 07 Oct 2011 00:24:04 -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"]
			}
		}}}
	}}}}
}