1
何らかの理由で返されるように見える国は、すべてペアで返されますか?一度「ヨーロッパ」の国だけを返すようにコードを変更するにはどうすればよいですか?ペア印刷の価値はありますか?ルア
function newcountry(continent,country)
local object = {}
object.continent = continent
object.country = country
local list = {}
for i in pairs(object) do
if object.continent == "Europe" then
table.insert(list, object.country)
print(object.country)
end
end
return object
end
a = newcountry("Africa","Algeria")
b = newcountry("Europe","England")
c = newcountry("Europe","France")
d = newcountry("Europe","Spain")
e = newcountry("Asia","China")