by Learn2win on 8/18/16, 1:54 PM with 10 comments
by spinningarrow on 8/18/16, 5:11 PM
"My favorite part of Racket is how it supports a certain development style of evolving scripts into programs […] I transition from "no code" to "working code" to "robust code" to "re-usable code", the program is almost always runnable."
by cubano on 8/18/16, 7:05 PM
$split_by_whitespace = explode(file_get_contents('exaample.txt')," ");
$circular = array();
for ($i=0;$i<count($split_by_whitespace);$i++) {
array_push(array_shift($split_by_whitespace));
$circular[]=$split_by_whitespace;
}
sort($circular);
print_f($circular);
While I am sure there a lot of interesting use cases for Racket, but when it comes to processing array data, I'll take PHP everytime.by WillPostForFood on 8/18/16, 6:37 PM
by eorge_g on 8/18/16, 6:16 PM
by pbw on 8/19/16, 2:13 PM