summaryrefslogtreecommitdiff
path: root/contrib/helloimage/podman_hello_world.c
blob: ee574130dcb0852570546db832bcb92020b24640 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//###
//  ASCII art by the incomparable Máirín Duffy,
//  duffy@redhat.com, Twitter: @mairin
//  January 2022
//###

#include <stdio.h>
int main() {
    puts("\
!... Hello Podman World ...!\n\
\n\
         .--\"--.           \n\
       / -     - \\         \n\
      / (O)   (O) \\        \n\
   ~~~| -=(,Y,)=- |         \n\
    .---. /`  \\   |~~      \n\
 ~/  o  o \\~~~~.----. ~~   \n\
  | =(X)= |~  / (O (O) \\   \n\
   ~~~~~~~  ~| =(Y_)=-  |   \n\
  ~~~~    ~~~|   U      |~~ \n\
\n\
Project:   https://github.com/containers/podman\n\
Website:   https://podman.io\n\
Documents: https://docs.podman.io\n\
Twitter:   @Podman_io");
}