Raw File
hello-s390x.c
#include <unistd.h>

int main(void)
{
    write(1, "hello\n", 6);
    return 0;
}
back to top