Lets say I am using some string variables, but I want to ensure that there are no typing errors in some code I am using.<br>so I define newString as a new string type and declare a variable as ANewString.<br><br>That
way if I create a function such as functionUsingNewString(a: newString)
and I pass a plain string as a parameter to functionNewString the
compiler declares an error.<br><br>If c is string and b is newString and I do b := c the compiler should generate an error unless I do b := newString(c);<br><br>Is this possible?<br clear="all"><br>-- <br>Frank Church<br>
<br>=======================<br><a href="http://devblog.brahmancreations.com">http://devblog.brahmancreations.com</a><br>