← Back to context

Comment by delian66

4 years ago

> For instance, languages exist for 64-bit architecture that have binaries less than 400 bytes in size.

In V (https://github.com/vlang/v/) for example, with the currently experimental native backend, you can produce executables, that are < 400 bytes:

    $ cat examples/hello_world.v
    println('Hello, World!')
    $ ./v -b native -o hw examples/hello_world.v
    $ ls -l hw
    -rwxrwxr-x 1 delian delian 183 Mar 13 17:51 hw
    $ ./hw
    Hello, World!