chevron_leftchevron_leftchevron_left
AnonyAnonymous
#146085029Sunday, September 14, 2014 11:26 PM GMT

That comparison is rather unfair in terms of aspects such as syntax and functionality. "Lua" is a "Scripting-Language" while C++ is an actual complete "Programming Language" itself, "Lua" has many great features and libraries created in "C" enabling it to be used without the presence of another language and a large majority of the core programming concepts can be mimicked using "Lua".
AnonyAnonymous
#147065458Tuesday, September 30, 2014 9:12 AM GMT

"- Kid why do you have to post troll comments on C$G leave no one here likes you." Well, if the user is trying to gather negative attention, responding with "leave no one here likes you" is only going to give them more satisfaction.
AnonyAnonymous
#147277610Saturday, October 04, 2014 4:03 AM GMT

"they thought you could get a link to hack someone, then i went into hopelessly deep random stuff about C# programming and they asked for personal information. :(" Don't worry, although the spectrum of computer programming is certainly wide and diverse, the majority of core concepts have universal usability, It's simply just implemented differently in different "languages."
AnonyAnonymous
#147375444Sunday, October 05, 2014 2:54 PM GMT

Here's an example: Tab = {"A","B","C"} print(unpack(Tab)) -- It's going to print A,B,C simply because unpack() returns the entire table in the form of a string.
AnonyAnonymous
#147429149Monday, October 06, 2014 4:27 AM GMT

Well, not all of the members act like that, some users simply take it to unnecessary extremes, "C&G" is actually filled with plenty of positive and interesting discussions despite the occasional negativity.
AnonyAnonymous
#147483497Tuesday, October 07, 2014 3:18 AM GMT

"Lua" itself is a "Scripting Language" created using ANSI C, "C" is an entire programming language.
AnonyAnonymous
#148217264Sunday, October 19, 2014 5:08 AM GMT

"I can confirm nobody except brown-nosers like ilyHailey. He annoys us in C&G as well." I would have to disagree entirely.
AnonyAnonymous
#148379709Tuesday, October 21, 2014 11:43 PM GMT

"1. The stonecutter wants to be like the merchant because .... (I PUT D. ) A. he wants to be feared like the merchant B. the merchant is important C. the merchant is humble D. he wants to be envied like the merchant" Regarding your answer to this particular question, the "Merchant" is well-known for the wealthiness and degree of power that his role gives him while the Stonecutter's role could be viewed as minimal and unimportant.
AnonyAnonymous
#148390637Wednesday, October 22, 2014 2:00 AM GMT

"Our inhabitants are generally ex OTers who grew from their psychological infancy to be with the big boys and girls in C&G that also grew up" Simply because an individual decides to participate in either of those Sub-Section's doesn't indicate they have a psychological deficiency. It's entirely unnecessary and purely narrow-minded to assume and categorize each user of this Sub-Section as having this mentality or reasoning for communicating with other users simply because of the behavior of ...
AnonyAnonymous
#148992965Saturday, November 01, 2014 10:25 PM GMT

I personally prefer the usage of "C".
AnonyAnonymous
#150000047Tuesday, November 18, 2014 1:59 PM GMT

"What does getfenv do, stop saying get the envoirment because when people say that, I think of forests and stuff, WHAT ENVOIRMENT. Example and stuff pl0x. also setfenv" The "environment" is simply just the table that the function is currently in, as an example: A = {} function B() setfenv(1,A) --'1' refers to the function "B" in this example. C = 100 end B() print(C) --This will print nil simply because "C" is in a different environment altogether from "print". However, if you utilized so...
AnonyAnonymous
#150346597Monday, November 24, 2014 8:08 PM GMT

"anony, i find that assembly is too complex for the most part. i prefer to write the base kernel in assembly and write the rest in C/C++" Well, general development has certainly shifted as internal and external research progressed further, C-based languages have certainly allowed for simpler mechanisms to perform advanced tasks on a medium-level scale. It's all a matter of circumstances and personal preference.
AnonyAnonymous
#150592814Friday, November 28, 2014 1:28 PM GMT

"local" changes the "Scope" of a variable and to a rather limited and usually insignificant degree, has a slightly quicker speed compared to global variables. As an example: function A() C = 100 end A() print(C) This would print "100" due to the fact that "C" is a global variable and can therefore be utilized outside of it's "Scope", which would be the function "A". function B() local C = 100 end B() print(C) This would print nil simply because "C" is a local variable and therefore would...
AnonyAnonymous
#150677491Saturday, November 29, 2014 10:02 AM GMT

"Check out C&G. Have a look at LMaD." They certainly aren't "losers", and neither are any of the users here. There's absolutely nothing wrong with positively utilizing this website for entertainment purposes.
AnonyAnonymous
#151340154Monday, December 08, 2014 5:10 PM GMT

"it's the fact shes calling me out for breaking rules when she admitted she breaks them as well. h-y-p-o-c-r-i-t." Simply because the topic creator may have a pattern of behavior consistent with "Hypocrites" doesn't necessarily invalidate their statements. Regardless though, neither of you are "Superior" to each-other and thus it's unnecessary to argue about this when the moderators can easily assess the situation and make a positive discussion.
AnonyAnonymous
#151399380Tuesday, December 09, 2014 6:49 PM GMT

I personally wouldn't suggest receiving a "Facial-Piercing". There's a significant amount of health risks associated with the usage of potentially non-sterile equipment ranging from pathogens such as "Hepatitis-C" or "Human-Immunodefiency-Virus" to often lethal skin infections from bacteria such as "Methicillin-Resistant-Staphylococcus-Aureus".
AnonyAnonymous
#151437104Wednesday, December 10, 2014 4:24 AM GMT

I personally prefer utilizing "C" over either of those choices.
AnonyAnonymous
#151655489Sunday, December 14, 2014 4:57 AM GMT

printf("I would personally prefer the 'C' language");
AnonyAnonymous
#152700456Monday, December 29, 2014 7:10 AM GMT

"most corporations hire C/C++ programmers i think." The general consensus itself is actually more oriented towards C-Sharp/Java; Although, the capabilities of C are highly beneficial.
AnonyAnonymous
#158244470Friday, March 20, 2015 5:34 AM GMT

"C&G" is oriented towards discussion of groups.
AnonyAnonymous
#180781256Thursday, December 31, 2015 11:24 PM GMT

Usage of the substring function is a viable method for accomplishing this particular task. Alternatively, if you desire for greater specification, you could utilize the string.gmatch() iterative function to obtain specified elements of the string, as specified below: String = "Example"; for c in String:gmatch("%a") do print(c); end The argument for the gmatch function would be any desired control-strings. Although, it should be recognized that the variable "c" merely to the current charac...
AnonyAnonymous
#182734655Sunday, January 31, 2016 6:13 AM GMT

"t["Team"]" Though I would appreciate your effort to assist this individual if I was the person with this issue, using such a Lua expression is equivalent to retrieving the value at the specified table key, which is not the desired effect. As for retrieving the key identifier, the only technique I can think of at the current moment is to simply store the required non-numerical keys within a variable/array for quick accessibility, as shown below: Keys = {"Cookies","Cream","Cake"]; Desserts = ...
AnonyAnonymous
#184134954Monday, February 22, 2016 8:16 AM GMT

The actual use depends entirely on preference and necessity. If you prefer to manipulate hardware functionality on a more direct level, Assembly/C is excellent to utilize. Nonetheless, the majority of individuals seem to prefer high-level abstraction, which is often much more "accessible" to beginners than low-level instructions. Given the simplicity of Lua, I would not consider it reasonable to compare the language to low/middle languages such as C or Assembly.

chevron_leftchevron_leftchevron_left