class SqrtTest
feature
	sobj: sqrt;
	
	create is
	do
		sobj.create;
		
		io.putint(sobj.sqrt(1));
		io.putint(sobj.sqrt(2));
		io.putint(sobj.sqrt(4));
		io.putint(sobj.sqrt(8));
	end;
end
