#include <stdio.h>
#include <unistd.h>
#include <string.h>


void PRNT(char *s);
int main() {
    int P = 0;
    Fafafafafa:
    if (P < 3) {
        PRNT("あああああああれ\n");
        P++;
        if (P == 4) {
            PRNT("ぶレ゙ーく\n");
            goto Gagagaga;
        }else{
            goto Fafafafafa;
        }
    } else {
        PRNT("forループのエる゚セ\n");
    }
    Gagagaga:
    return 0;
}

void PRNT(char *s){
    register int x asm("rdx") = strlen(s);
    write(1, s, x);
}

Embed on website

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