'附近的意外符号>> [

问题描述 投票:2回答:1
我正在尝试在Lua中编写代码,您必须年满12岁才能打印出"Welcome!"。但是,每当我运行此代码时,我都会收到一条错误消息,说

'

错误消息说这是第3行。如果可能的话,有人可以指出该代码中的其他潜在错误吗?我的代码如下:

io.write ("Enter your age:") age = io.read() if age == <12 then print ("O noes, you are too young!") elseif age == >12 then print ("O noes, you are too old!") else print ("Welcome, son!") end

我正在尝试在Lua中编写代码,您必须年满12岁才能使它显示“ Welcome!”。但是,每当我运行此代码时,都会收到一条错误消息,提示''>>
lua garrys-mod
1个回答
5
投票
将代码更改为:
© www.soinside.com 2019 - 2024. All rights reserved.