#include <stdio.h>

void asoko() {
    int chinpoko = 0;
    A:
    if (chinpoko == 0) {
        puts("|—---|");
        puts("|____|");
        puts("|------------|");
        puts("|------------|");
        puts("|—---|");
        puts("|____|");
        chinpoko = 1;
        goto A;
    }
    puts("");
    
}

int main() {
    int chinchin = 0;
    Ai:
    asoko();
    if (chinchin == 0) {
        chinchin = 1;
        goto Ai;
    }
    
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: