Time to play....Name that (Programming) Language

Alkesh

Golden Member
Jul 21, 2005
1,391
1
0

libname atot=u:\Anandtech\atot;

proc sort atot.users;
by 'PostCount';
run;

data = atot.users
nodupkey;
if 'PostCount' > 10000;
then = 'Lifer';
run;

 

mundane

Diamond Member
Jun 7, 2002
5,603
8
81
Originally posted by: Alkesh
Damn you're good. Winnar!

Googled the keywords (proc, nodupkey). I've never actually heard of or used the language before.
 

dxkj

Lifer
Feb 17, 2001
11,772
2
81
Originally posted by: diegoalcatraz
Originally posted by: Alkesh
Damn you're good. Winnar!

Googled the keywords (proc, nodupkey). I've never actually heard of or used the language before.

And this is why as soon as they can hook a search engine into our brains, all kids will start passing classes with A's
 

poopygood

Senior member
Apr 14, 2002
818
0
0
for ($i=0; $i<=(count($titles)-1); $i++) {
$_xml .= "<image>\r\n";
$_xml .= "<title>" . $titles[$i] . "</title>\r\n";
$_xml .= "<author>" . $authors[$i] . "</author>\r\n";
$_xml .= "<description>" . $descriptions[$i] . "</description>\r\n";
$_xml .= "<date>" . $submission_date[$i] . "</date>\r\n";
$_xml .= "<path>" . $imgpath[$i] . "</path>\r\n";
$_xml .= "<thumb>" . $thumbpath[$i] . "</thumb>\r\n";
$_xml .= "</image>\r\n";
}
 

DivideBYZero

Lifer
May 18, 2001
24,117
2
0
Originally posted by: poopygood
for ($i=0; $i<=(count($titles)-1); $i++) {
$_xml .= "<image>\r\n";
$_xml .= "<title>" . $titles[$i] . "</title>\r\n";
$_xml .= "<author>" . $authors[$i] . "</author>\r\n";
$_xml .= "<description>" . $descriptions[$i] . "</description>\r\n";
$_xml .= "<date>" . $submission_date[$i] . "</date>\r\n";
$_xml .= "<path>" . $imgpath[$i] . "</path>\r\n";
$_xml .= "<thumb>" . $thumbpath[$i] . "</thumb>\r\n";
$_xml .= "</image>\r\n";
}

PHP?