cntkillmeJoin Date: 2008-04-07 Post Count: 49450 |
"That's your opinion. Personally, I like lower level languages more than higher level ones."
Yet you know none.
Stop saying Lua is bad, it's one of the fastest embedded scripting languages out there. If you don't like it, then why are you here? |
|
lordramboJoin Date: 2009-06-16 Post Count: 20628 |
lol he claims to to like low level languages but he's one of those generic skids with romantic ideas about the use of OOP |
|
|
@cntkillme
My argument was about the syntax, not the speed of the language. Sorry if I hurt your feelings by presenting facts.
Also, could you explain by what method you came to the conclusion that I don't no any low level languages? |
|
|
@lordrambo
Are you the idiot who said OOP is terrible and nobody should use it despite the fact that it is used almost unanimously in large projects? Lol, get out. |
|
lordramboJoin Date: 2009-06-16 Post Count: 20628 |
lol generic skid continues to defend OOP which he does not know. I've actually written OOP programs unlike you. You're just stupid and overrate OOP because you don't know when it's appropriate and when it's not (because as said, you don't know it and can't form your own opinion based on experience).
also you obviously don't know c++ either because you don't even know how to indent your code properly, according to something you posted on the forums a few months ago. You just took some low-intelligence class and now think you can be associated with good programmers (which is why you've been all over this thread since it started)
"Are you the idiot who said OOP is terrible and nobody should use it despite the fact that it is used almost unanimously in large projects?"
also none of this is true |
|
|
@lordrambo
I never claimed that every project should use OOP, you imbecile. I've never taken any programming classes because I'm capable of learning by reading online documentation, unlike you.
"because as said, you don't know it"
Nope, I never said that.
"also you obviously don't know c++ either because you don't even know how to indent your code properly"
So you gauge my programming proficiency by the fact that one post I made months again wasn't indented properly? Wow, you're dumber than I thought. The reason it wasn't independent properly is because it is impossible to indent code within the forum textbox. |
|
lordramboJoin Date: 2009-06-16 Post Count: 20628 |
it was a pastebin also nice insults since you don't have a real argument to make |
|
|
That's because you never presented any claims. All you elected to do was call me an idiot. I've never posted a pastebin on this forum, so I know that what you're saying isn't true, but if it is, go ahead and show me the post. |
|
|
If you have any claims to make about Lua's syntax, or any counter arguments to what I've already posted, then make them. But don't make a post just to call me an idiot for no reason as it makes you look like the idiot. |
|
lordramboJoin Date: 2009-06-16 Post Count: 20628 |
yeah cause I totally have every thread you ever posted saved, but nah that's alright you can keep denying that and everything else that points to you being an inferior being |
|
|
I'm not even going to bother replying because you do a better job making yourself look like an idiot than I ever could. |
|
x_oJoin Date: 2015-06-04 Post Count: 4378 |
Löve2D is cool
"skids with romantic ideas about the use of OOP" ~ lordrambo |
|
lordramboJoin Date: 2009-06-16 Post Count: 20628 |
"I'm not even going to bother replying because you do a better job making yourself look like an idiot than I ever could."
LOL YOU JUST REPLIED
and I'm the idiot? |
|
|
As in I'm not going to respond to your post. If you weren't an idiot, you would have been able to deduce that. You already look like enough of an idiot, so do yourself a favor and stop posting. |
|
lordramboJoin Date: 2009-06-16 Post Count: 20628 |
you obviously did and just did it again gg |
|
larr1212Join Date: 2015-01-06 Post Count: 259 |
LÖVE (2D) > Gideros > Corona
|
|
DarkenusJoin Date: 2014-07-17 Post Count: 1997 |
ARE YOU SERIOUS?! WHY ARE THERE SO MANY GAME ENGINES IN LUA.
UGH NOW YOU MAKE ME DO MORE RESEARCH?!? (of course, for the better cause though so thx)
@cnt and yet again you change your character and throw me off |
|
|
oop is terrible. with oop, you have to plan more than you need to.
OOP fanatics claim that oop works like this in a game:
public class organism {
int legs=0;
}
public class human : organism {
int legs=2;
}
public class dog : organism {
int legs = 4;
}
how it really is:
public class human { // in a game you think of the player first usually
int legs = 2
}
public class dog : human { // uh oh
int legs = 0
} // now we started a mess. To make a dog class we inherited from a human class.
// and the final output is:
// ofidhsufhsdhfueshzkdhfuesldkjhfuesldfheslzdljfhesu
you underestimate the power of the dank side |
|