eng
competition

Text Practice Mode

Become a programmer

created Dec 2nd, 07:43 by Deepanshu Attri


2


Rating

80 words
11 completed
00:00
The quick brown fox jumps over the lazy dog!  
1234567890 `~  
!@#$%^&*() -_=+  
[]{};:'",.<>?/|\  
int main() {  
    printf("Hello, World!\n");  
    for (int i = 0; i < 10; i++) {  
        cout << "Number: " << i << endl;  
    }  
    return 0;  
}
function test(a, b) {
    return a + b >= 10 ? "Success" : "Failure";
}
const arr = [1, 2, 3, 4, 5];
console.log(arr.map(x => x * 2));
/* This is a multi-line comment:  
   Practice makes perfect! */
 

saving score / loading statistics ...