Good vs. Evil

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,801
248
53 well..... then I am going to have a lot of fun the next few hours
*goes over the set of knifes, rambling to himself then eventually takes one and slowly walks towards you*
 

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,801
248
53
*The floor quickly becomes blood red, the screams of pain are heard from miles away*
 

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,801
248
55
*I leave the room, from outside is only a shadow visible from what have happened, something hangs from the ceiling of the room*
 

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,801
248
58 I meant this monkey
It doesn't have for loops, instead of that it seems to have inverted while loops for god knows what reason, arrays can only be numerical and concatenation is done with the plus sign.
Its idea is fun but the language itself just seems awful especially looking at how big the javascript file got if you compiled it to that as every function it can think of you may or may not use will be there, even if you don't use it making the file at least 2805 lines long.
 

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,801
248
58 I found out about that language when I was looking at the site from the dev from nugget and was curious about that thing as it seemed very good at making cross platform programs(as someone who switches often between windows and Linux I love that) So I decided to check it out and then found out about certain things and now I hate it.
To make an infinte loop you write it like this
Repeat
'some code here
Forever
and yes there is a ' there because that is how you comment stuff in this language for some weird reason

if you want a for loop you write it down like this
local int:times=0
Repeat
times=times+1
Until times=100

or you can use a while loop because it is technically the same thing except that a while loop looks like this
local int:times=0
while times<100
times=times+1
wend