Meus scrpits de aprendizado ✗☠☜☃☑ |
Impressorahp « Citoyen » Membre 1476839520000
| 0 | ||
function soma(1,2) return 1 + 2 resultado = soma(1,2) print(resultado) Correta ✔ function level(level) if level == 100 then return level + 1 else return "Você tem apenas " ..pontos.. ", falta pouco!" end end Fail ✖ fail Função nivel Se pontos for igual a 100 então executar nivel + 1 senão retorne "você tem " ..pontos../100" Correta ✔ function level() if point == 100 then return level + 1 else return "Você tem" ..point.. "/100" end end Correta ✔ Dernière modification le 1477261980000 |
Impressorahp « Citoyen » Membre 1476916800000
| 0 | ||
função dizerOI(b) se b for igual à oi então executar oi senão executar ;-; function sayHello(b) if b == oi then return "Oi" else return "anh" end end function sayHello(b) if b ~= "oi" then return "OI" else return "anh" local x, Level = 100, 0 function level() if x == 100 then Level = Level + 1 return Level end end print(level()) function mlevel() if Level == Level then Level = Level + 2 return Level end end print(mlevel()) playerName = {} friend = {} function addF() if playerName == addF then return addF == friend end end playerName = {} friend = {} function addF() if playerName == addF then return addF == friend else return "OI" end end print(addF()) Dernière modification le 1477592460000 |
Impressorahp « Citoyen » Membre 1477592940000
| 0 | ||
cellphne = {} Samsung = {} Lg = {} function cellphne() if cellphne == Samsung then return "You phone is" ..Samsung.. "!" else return "You phone is" ..Lg.. "!" end end local cellphne cellphne = Lg Samsung = {} Lg = {} function cellphne() if cellphne ~= Samsung then return "You phone is" ..Samsung.. "!" else return "You phone is" ..Lg.. "!" end end marca = {Samsung, Lg,} function cellphone() if cellphone == marca[1] then return "You phone is" ..marca[1].. "!" else return "You phone is" ..marca[2].. "!" end end Fail ✖ notificacion = {} user = {} msg = {} function notificacion() if user <= msg then return notificacion "You have a mensage" end end Dernière modification le 1477599540000 |
Impressorahp « Citoyen » Membre 1477594140000
| 0 | ||
neve = {} down = {} key = {} function bolinhaDeNeve() if key == down then return neve end end |