User:Ciferkey
Jump to navigation
Jump to search
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;
}