size_t strlen(char *s) { size_t i = 0; while(*s++) i++; return i; }
Yes you're right hehe. less powerful version of Lisp? that's weird but oh well ..
Equally cryptic to perl syntax imo..
Yeah .. I have not faced this kind of wall until now but I get your point. The whole scripting language issue is a complicated one imo.. People want to either use 100% scripting or 100% system (i.e., C), which is not…
Why doesn't anyone ever mention my favorite language, Tcl? foreach line [read stdin] { foreach word [split $line] { if [string match *ing $word] { puts $word } } }
I myself participated in the hacking cult noname123 refers to and i can clearly understand his statement. If you haven't been there, you just can't get it. "Get a `blog'" haha this is so freaking hilarious and…
size_t strlen(char *s) { size_t i = 0; while(*s++) i++; return i; }
Yes you're right hehe. less powerful version of Lisp? that's weird but oh well ..
Equally cryptic to perl syntax imo..
Yeah .. I have not faced this kind of wall until now but I get your point. The whole scripting language issue is a complicated one imo.. People want to either use 100% scripting or 100% system (i.e., C), which is not…
Why doesn't anyone ever mention my favorite language, Tcl? foreach line [read stdin] { foreach word [split $line] { if [string match *ing $word] { puts $word } } }
I myself participated in the hacking cult noname123 refers to and i can clearly understand his statement. If you haven't been there, you just can't get it. "Get a `blog'" haha this is so freaking hilarious and…