do U want ur programs to look like this? ; )
#include <stdio.h>
int x ();
int y ();
int z ();
int main () {
return x ();
} /* │ */
/* │ */
/******** │ */
/* │ */
/* ╭──────╯ */
/* │ */
/* │ ********/ /***************/
/* │ */ /* */
/* │ */ /* ╭─────────╮ */
/* │ */ /* │ │ */
/* ▼ */ /* │ ******* ▼ */
/* │ */
int x () { /* │ */ int y () {
puts ("lol hi"); /* │ */ puts ("hehe!");
return y (); /* │ */ return z ();
} /* │ */ /* │ */ } /* │ */
/* │ *********** │ */ /* │ */
/* │ │ */ /* │ */
/******** ╰─────────────╯ ************** │ */
/* │ */
/* ╭─────────────────────────────────────╯ */
/* │ */
/* ▼ ***************************************/
int z () {
puts ("huhu!");
return 0;
}
(weird.c
)
- make it auto generate these from existing programs