Let's say I have something like
a = io.read()
a = tonumber(a)
if a then
print(a,a^2-1)
end
Is there another way to get this input without being io.read() ?
Well, basically I would like to know if there is any way to transform a script written in ASCII into Characters and if so, how would I transform it?
Code (1)
local code = '7 minimize = true -- minimizar a mainbp?
bps = 1 -- quantidade d...
I'm trying to create a script to enable the bandwidth control QOS service of my router, but I'm doing something wrong because I can not keep the connection after making a POST request.
local host = '192.168.0.1'
local headers = [[]]
local Lua...
I need the output to be a special character from an arrow pointing to the right (→) for example, whose Unicode code is U + 1F812. I have tried to write in various ways always with \ or % preceding the Unicode code (similar to writing a tab or...
I have a lua file with the following content:
Pokes_Icons = {
["Bulbasaur"] = {
on = 12906,
off = 12908,
used = 12907,
}
}
I'm trying to get the value of "on" in C ++, I tried it like this...
I am trying to create a moon reading that can read this table below, the table should only accept values and if they add string, it warns the location of the error.
Table = {
1000, 2000, 3000, 4000, 5000,...
Well I have a table as follows:
{
Number: 15007 Name: "Variance" Value: 35
}
Before I used a txt format that was like this:
15007,Variance,35
The code in C was something like this:
void read_names(void) {
s...