Skip to content

Jalina2007/Jalina2007

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

2 Commits
Β 
Β 

Repository files navigation

Hi there πŸ‘‹

public class Profile {

    String name = "Jalina Jayasinghe";
    String role = "Software Engineering Student";
    String location = "Sri Lanka";

    String[] skills = {
        "Java", "Web Development", "Python"
    };

    String[] interests = {
        "Backend Development", "Low-level programming",
        "Frontend Development", "DevOps"
    };

    void print() {
        System.out.println(name + " | " + role);
        System.out.println("Location: " + location);
        System.out.print("Skills: ");
        Arrays.stream(skills).forEach(skill -> System.out.print(skill + " "));
        System.out.print("Interests")
        Arrays.stream(skills).forEach(interest -> System.out.print(interest + " "));
    }
}

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors