<p> 以下代码的输出是什么?( )<br/> function myFunction(x)<br/> if x < 0 then<br/> error(“x must be non-negative”)<br/> end<br/> return x * 2<br/> end<br/> print(myFunction(-2))</p>
<p> “x must be non-negative”</p>
<p> -4</p>
<p> 0</p>
<p> Error</p>