Hey @BSA_15, nice layout : )
( I’ll make the textbox work, just jimmy a minute )
I just got the world record for the ugliest crash ever!
It didn’t even run the stop(); code in the frames… I guess it’s because the frames broke
oh no
dang… that’s something new…
Can you make the Fibonacci sequence in levox yet?
I’m not really sure, but maybe in the (near) future
Wait can it even compute expressions yet? Like 2+2 or 2*(3-2)?
We don’t have that (yet)
But the calculator in BSA_15’s layout can do that (it’s not a great calculator yet)
Might add that in the console too
Levox can’t do much, but it’s growing through time
I made a working programming language interpreter about a month ago (it isn’t the one you saw in Scratch). It wasn’t a language that I made up, it was BASIC, where you can write things like 3+3 or 2*(3-2) or 5+SIN(2). It wasn’t made in Wick though which is why I didn’t share it.
Basically how I did it was I made a function that parses the expression, let’s say 3 + 2 * ( 9 - 2)
, to a list of tokens, giving [3, “+”, 2, “*”, [9, “-”, 2]]. It parsed parentheses by calling itself with the things inside the parentheses. Then after that it computes the values, following PEMDAS.
Your method (like always) seems to be the best :D
(I learned PEMDAS in school (parenthesis, exp., Mult., Divis., etc.))
i think if you want to do a console thing, you should make a function like:
console = function(content) {
consoleText.setText(existingText + \n + content);
}
so when you put console(2+2), it should calculate content when it is called…? if instead you put console(“2+2”) with the quotes, it’ll append 2+2 and not 4.
yea, it works (just had to reload)
can you send me the .wick file
I didn’t test it, so let me know if u find any errors
Levox11-2-2020_4-33-12PM.wick (166.9 KB)
(also, I’ll update how somethings are placed)
@Hamzah_Alani SOMETHING WEIRD IS HAPPENING AT levox.studi0s.repl.co
it says that are website levox is dangerous who did this
now it says something else
that is really weird I have never seen it do that
oh it works now
I know this is already possible in Levox, but I feel like adding a command that opens multiple links in ONE tab
What this really does is just load multiple iframes in one created window. I feel like it would be perfect for multitasking (and really allows me to work on different projects at once )