What exactly is a parameter?

The parameter is basically the value passed on the function. Let’s say I wanna make a function that runs everything I feed it, I’ll be able to use parameters like this…

function Run(Code)
   loadstring(Code)();
end;

Run(print("yo"));
1 Like