Skip to content
View JAFarrow's full-sized avatar

Block or report JAFarrow

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
JAFarrow/README.md
import java.util.Map;

public class JAFarrow extends Developer {
    
    public JAFarrow(String name, Map<String, String> contact, Map<String, String[]> languages, String[] interests) {
        super(name, contact, languages, interests);
    }
    
    public static void main(String[] args) {
        String name = "Justin Farrow";

        Map<String, String> contact = Map.of(
            "email", "[email protected]"
          );

        Map<String, String[]> languages = Map.of(
            "intermediate", new String[] {"java", "python", "javascript"},
            "learning", new String[] {"c#"}
          );

        String[] interests = {
            "web development",
            "rest api's",
            "protocols",
            "foss alternatives"
          };

        Developer me = new JAFarrow(name, contact, languages, interests);
    }
}

Pinned Loading

  1. cs50_birthdays cs50_birthdays Public

    CSS

  2. cs50_finance cs50_finance Public

    Python

  3. devBlog devBlog Public

    JavaScript

  4. TOP_rockPaperScissors TOP_rockPaperScissors Public

    CSS

  5. TOP_sketchpad TOP_sketchpad Public

    JavaScript

  6. TOP_ticTacToe TOP_ticTacToe Public

    JavaScript