The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Black DSi version 1.2u but can access the shop! White DS lite. Website: blog.overflowbit.com

//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;
}