Name: Anonymous 2006-06-20 20:56
c:
#include <stdio.h>
main() { printf("hey worldz\n"); }
#include <stdio.h>
main() { printf("hey worldz\n"); }
module Hello
extend self
def to(helloee)
puts 'Hello #{helloee}'
end
end
Hello.to :world