Name: Anonymous 2011-12-22 19:52
How does /prague/ feel about Go?
[~]-> cat h.c
#include <stdio.h>
void main(void){
printf("Hello, World!\n");
}
[~]-> gcc -static h.c -o h
[~]-> strip -s h
[~]-> upx -9 h
Ultimate Packer for eXecutables
Copyright (C) 1996 - 2010
UPX 3.07 Markus Oberhumer, Laszlo Molnar & John Reiser Sep 08th 2010
File size Ratio Format Name
-------------------- ------ ----------- -----------
736336 -> 289848 39.36% linux/ElfAMD h
Packed 1 file.
[~]-> ls -sh h
288K h