<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Wed, Jan 4, 2017 at 9:29 AM, Ryan Joseph <span dir="ltr"><<a href="mailto:ryan@thealchemistguild.com" target="_blank">ryan@thealchemistguild.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I’ve seen functions that use the untyped params like:<br>
<br>
function GetSomething (var something): boolean;<br>
<br>
This seems like something useful I would like to use but how can you assign to the parameter? I tried but I got an error message which is confusing because it’s a “var” after all.<br></blockquote><div><br></div><div>A parameter you pass, would be passed by a reference (an address in memory)</div><div><br></div><div>Thus</div><div>  GetSomething(5)</div><div>will not work.</div><div><br></div><div><br></div><div>var</div><div>  i: integer;</div><div>begin</div><div>  i:=5;</div><div>  GetSometing(i)</div><div><br></div><div>Be careful using this open parameter, since you don't have any type information about "something". You either should not assume the type or pass the additional information </div><div><br></div><div>thanks,</div><div>Dmitry  </div></div></div></div>