Documentation
1
2
3
4
5
6
int bugu(int x) {
   return x + 1;
}
int main() { 
    return bugu(3); 
}