local s = [[ print("hi")]] math.randomseed(os.time()) local words = { '"2"', } local code = { '("1")' } local n = [[--Epik Obf By Zepter local XN=]]..code[math.random(1,#code)]..[[;local funny=]]..words[math.random(1,#words)]..[[;WMMaMwwwmMMmmM="JnanamMaman:,++=h+hzhahK((u+h-h-g-g-4r$e4#e$r6ty6+i7j-f&d45-5brf4t3reretetefrfrgrgrtrtr-++e==onnm-+()JHananJJSjajajJjfg4d4:e5_tdFDt$fDt_t5tR_b&_&4-5&4&3&:354-5-5'5-5-5-tgrg4&5rgrg";local funny=]]..words[math.random(1,#words)]..[[;local funny=]]..words[math.random(1,#words)]..[[local a=function()a3_a2=n+X end;local d=setmetatable;local XN=]]..code[math.random(1,#code)]..[[;local e=getfenv or function()return _ENV end;local X="***** still used psu"local f={n,x,o,x,c,v,b}function IllIlllIllIlllIlllIlllIll(g)if g==(919+636-636)*3147/3147+919 then return not true end;if g==(968+670-670)*3315/3315+968 then return not false end end;local h=7*3-9/9+3*2/0+3*3;local i=3*4-7/7+6*4/3+9*9;local j=table.concat;function IllIIIIllIIIIIl(h)function h(h)function h(k)end end end;IllIIIIllIIIIIl(900283)function IllIlllIllIlllIlllIlllIllIlllIIIlll(i)function h(k)local i=9*0-7/5+3*1/3+8*2 end end;local error=function()end;local warn=function()end;local print=function()end;local XN=]]..code[math.random(1,#code)]..[[;IllIlllIllIlllIlllIlllIllIlllIIIlll(9083)local m=string;local b=char;local c=sub;local XN=]]..code[math.random(1,#code)]..[[;local p=table;local funny=]]..words[math.random(1,#words)]..[[;local q=concat;local r=insert;local s=foreach;local t=rep;local u=remove;local w=setmetatable;local y=getmetatable;local z=newproxy;local f=getfenv or function()return _ENV end;local n=print;local XN=]]..code[math.random(1,#code)]..[[;local funny=]]..words[math.random(1,#words)]..[[;local o=warn;local XN=]]..code[math.random(1,#code)]..[[;local a=error;local A=writefile;local GP=load;local XN=]]..code[math.random(1,#code)]..[[;local B=loadstring;local C=true;local D=false;local XN=]]..code[math.random(1,#code)]..[[;local E=write;local v=based_top;local F="#TeamSeas"local function x(G,H)G=H end;local XN=]]..code[math.random(1,#code)]..[[]] local III_Zepter_III = {} for i=1,#s do III_Zepter_III[i] = string.byte(s,i) end local r = "local III_Zepter_III={}" for i=1,#III_Zepter_III do r = r .. string.format("III_Zepter_III[%d]=%d;",i,III_Zepter_III[i]) end r = r .. "local s=''" r = r .. "for i=1,#III_Zepter_III do s=s..string.char(III_Zepter_III[i]) end " r = r .. "GP(s)();local XN="..code[math.random(1,#code)]..";local XN="..code[math.random(1,#code)]..";local XN="..code[math.random(1,#code)]..";local XN="..code[math.random(1,#code)]..";local XN="..code[math.random(1,#code)]..";local XN="..code[math.random(1,#code)]..";local XN="..code[math.random(1,#code)]..";local XN="..code[math.random(1,#code)]..";local XN="..code[math.random(1,#code)]..";local XN="..code[math.random(1,#code)]..";local XN="..code[math.random(1,#code)]..";local XN="..code[math.random(1,#code)]..";local XN="..code[math.random(1,#code)]..";local XN="..code[math.random(1,#code)]..";local XN="..code[math.random(1,#code)].."" print(n,r..[[ ]])
Write, Run & Share Lua code online using OneCompiler's Lua online compiler for free. It's one of the robust, feature-rich online compilers for Lua language, running the latest Lua version 5.4. Getting started with the OneCompiler's Lua editor is easy and fast. The editor shows sample boilerplate code when you choose language as Lua and start coding.
OneCompiler's Lua online editor supports stdin and users can give inputs to programs using the STDIN textbox under the I/O tab. Following is a sample Lua program which takes name as input and prints hello message with your name.
name = io.read("*a")
print ("Hello ", name)
Lua is a light weight embeddable scripting language which is built on top of C. It is used in almost all kind of applications like games, web applications, mobile applications, image processing etc. It's a very powerful, fast, easy to learn, open-source scripting language.
-- global variables
a = 10
-- local variables
local x = 30
Value Type | Description |
---|---|
number | Represents numbers |
string | Represents text |
nil | Differentiates values whether it has data or not |
boolean | Value can be either true or false |
function | Represents a sub-routine |
userdata | Represents arbitary C data |
thread | Represents independent threads of execution. |
table | Can hold any value except nil |
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.
while(condition)
do
--code
end
Repeat-Until is also used to iterate a set of statements based on a condition. It is very similar to Do-While, it is mostly used when you need to execute the statements atleast once.
repeat
--code
until( condition )
For loop is used to iterate a set of statements based on a condition.
for init,max/min value, increment
do
--code
end
Function is a sub-routine which contains set of statements. Usually functions are written when multiple calls are required to same set of statements which increase re-usuability and modularity.
optional_function_scope function function_name( argument1, argument2, argument3........, argumentn)
--code
return params with comma seperated
end