/hello-world

hello, world

Primary LanguageAssemblyMIT LicenseMIT

hello-world

hello, world

PHP

php hello.php

#dump opcode
php -d opcache.enable_cli=1 -d opcache.opt_debug_level=0x10000 hello.php

PHP FPM

ping.path = /hello
ping.response = hello, world

nginx

http {
    server {
        location = /hello {
            return 200 "hello, world";
        }
    }
}

Assembly

gcc -c hello.S && ld -o hello hello.o