Hi, list!<br><br>Let's asume we have this function;<br><br>//----<br>fun void greeting()<br>{<br>&lt;&lt;&lt;&quot;hey, ChucKer!&quot;&gt;&gt;&gt;;<br>}<br>//-----<br>clearly we would call it like this;<br><br>greeting();<br>
<br>and all would be well. However, if we asume we would be a fairly chaotic sort of person who would make a large amount of typos, especially at 4 in the morning while trusting the parser will catch them for him faster then proofreading will (this is purely hypothetical).
<br><br>In this case it could theoretically happen that one would by accident type;<br><br>greeting;<br><br>This compiles just fine and nothing is wrong except for ChucK not running the function.<br><br>The question now is; should ChucK complain about such function calls? Is there some unforseen practical use in calling no-parameter functions without empty brackets?
<br><br>Yours,<br>Kas.<br>