view garf.c @ 75:dbf5ce219fe3

Switch from BASS to ft2play
author Paper <mrpapersonic@gmail.com>
date Sat, 25 Jun 2022 22:09:45 -0400
parents 2057ab53f04e
children cb7cb64e4929
line wrap: on
line source

// garf simulator
#include <stdio.h>
#include <string.h>

int main(void) {
    char answer[255];
    std::cout << "would you like to monetize 1123.best?: ";
    fgets(answer, sizeof(answer), stdin);
    if(strcmp(answer, "yes") == 0) {
        std::cout << "it's a yes!";
    } else {
        std::cout << "it's a yes!";
    }
    return 0;
}