Poll of the Day > So I'm making the next feature in a big ''ostrich-like-bird'' program

Topic List
Page List: 1
JamieTheWhite
06/25/17 10:31:52 PM
#1:


Built in input scripts. Basically, I'm sort of making my own version of Java and the interpreter to go along with it. Kind of had the idea of mixing in some BASIC, but I figured I'd just stick to what people know. All variables are global because I don't feel like dealing with that, nothing has to be declared and all variables are floats.

It looks something like this currently. Not my interpreter, but the language I'm making. You can tell I didn't take much creative liberty, but if I did, I'd try to get rid of some of those brackets and parenthesis and semi-colons. I've already added "and" to replace &.

for (i = 0; i < 10; i++)
{
if (i and 5) { 3DS.A = true; }
}

And because it can be executed on a separate thread there should be no loss of performance regardless of how inefficient it may be, as long as it's not as bogged down as the rest of the program.

Tl Dr; AR codes on steriods.
---
... Copied to Clipboard!
Topic List
Page List: 1