Warning: proc_open(): posix_spawn() failed: No such file or directory in /root/w/vendor/wikimedia/shellbox/src/Command/UnboxedExecutor.php on line 246
User:Ciferkey - DSiBrew
//Self Conscience Code
#include <iostream>
using namespace std;

bool is_running(){
     return true;
}

int main(){
    
    if( is_running() )
        cout << "I am running";
    else
        cout << "I am not running";
        
    char t = getchar();
    return 0;
}