Difference between revisions of "User:Ciferkey"

From DSiBrew
Jump to navigation Jump to search
(New page: //Self Conscience Code #include <iostream> using namespace std; bool is_running(){ return true; } int main(){ if( is_running() ) cout << "I am running"; else ...)
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
Black DSi version 1.2u but can access the shop! White DS lite. Website: blog.overflowbit.com
 +
 +
<source lang=cpp>
 
//Self Conscience Code
 
//Self Conscience Code
 
#include <iostream>
 
#include <iostream>
Line 17: Line 20:
 
     return 0;
 
     return 0;
 
}
 
}
 +
</source>

Latest revision as of 03:20, 3 February 2010

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