1. 程式人生 > >LUA邏輯運算符OR的使用

LUA邏輯運算符OR的使用

ror div error ret light int () erro print

function CheckValue(str_value, int_value)
	local msg;

	--邏輯運算符的使用
	if (int_value < 0) or (str_value == ‘ ‘)  then
		msg = 0;
	else
		msg = 1;
	end


	return msg;
end


in_str = io.read();
in_int = 1;


status = CheckValue(in_str, in_int);

if status == 1 then
	print("all input");
else
	print("has error");
end

  

LUA邏輯運算符OR的使用