github.com/hanks177/podman/v4@v4.1.3-0.20220613032544-16d90015bc83/contrib/hello/podman_hello_world.c (about)

     1  //###
     2  //  ASCII art by the incomparable Máirín Duffy,
     3  //  duffy@redhat.com, Twitter: @mairin
     4  //  January 2022
     5  //###
     6  
     7  #include <stdio.h>
     8  int main() {
     9      puts("\
    10  !... Hello Podman World ...!\n\
    11  \n\
    12           .--\"--.           \n\
    13         / -     - \\         \n\
    14        / (O)   (O) \\        \n\
    15     ~~~| -=(,Y,)=- |         \n\
    16      .---. /`  \\   |~~      \n\
    17   ~/  o  o \\~~~~.----. ~~   \n\
    18    | =(X)= |~  / (O (O) \\   \n\
    19     ~~~~~~~  ~| =(Y_)=-  |   \n\
    20    ~~~~    ~~~|   U      |~~ \n\
    21  \n\
    22  Project:   https://github.com/containers/podman\n\
    23  Website:   https://podman.io\n\
    24  Documents: https://docs.podman.io\n\
    25  Twitter:   @Podman_io");
    26  }