Skip to content

Latest commit

 

History

History
52 lines (42 loc) · 373 Bytes

test.md

File metadata and controls

52 lines (42 loc) · 373 Bytes
Good Bad
int foo() {
    int result = 4;
    return result;
}
int foo() { 
    int x = 4;
    return x;
}
int goo() {
    int result = 5;
    return result;
}
int goo() { 
    int x = 5;
    return x;
}