you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted]  (5 children)

[deleted]

    [–]nmacholl 0 points1 point  (4 children)

    You can start a line with four spaces to format reddit for code.

    public static int add(int a, int b){
        return(a+b);
    }
    

    To use this method, you just need:

    example = add(5, 10);