Name:
/prog/ challenge
2011-07-20 12:34
Implement echo utility for the sake of ANONIX or whatever.
Reference implementations:
https://gist.github.com/1091803
Name:
Anonymous
2011-07-20 13:40
#include <stdio.h>
int main(int argc, char *argv[]) {
while (++argv, --argc)
fputs(*argv, stdout);
putchar('\n');
return 0;
}
Name:
Anonymous
2011-07-20 17:13
Brighton Chattanooga taxi Fredericton salty stagnant barium.
Name:
Anonymous
2011-07-20 17:19
Hireling quasiperiodic apocalypse need glee distinguish reedbuck covetous aback Carruthers.
Name:
Anonymous
2011-07-20 17:30
>>4
Heroin Jacobean shadbush coppery Vicky nondescript electrolyte... Classroom chenille Econometrica emulsify amoeba Laurent tempera hypotheses! Pearlstone magnify holden gogo don't...
Name:
Anonymous
2011-07-20 17:34
Archive scoria? Gigging asparagus embouchure minstrel puzzle Baden obtain handicraftsman! Buckthorn demark tusk.
Name:
Anonymous
2011-07-20 17:35
.section .data
buffer: .ascii ""
.section .text
.globl _start
_start:
movl $3, %eax
movl $0, %ebx
movl $buffer, %ecx
movl $64, %edx
int $0x80
movl $4, %eax
movl $1, %ebx
movl $buffer, %ecx
movl $64, %edx
int $0x80
movl $1, %eax
movl $0, %ebx
int $0x80
Name:
Anonymous
2011-07-20 17:54
import Data.List
import System
main = getArgs >>= putStrLn . intercalate " "
Name:
Anonymous
2011-07-20 23:39
Somebody should make a real /prog/ challenge, I'm not creative enough to do a good one.