Skip to content

MarcosDasp/MarcosDasp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 

Repository files navigation

Olá, prazer em conhecer!

Sobre mim

public class Student {

    private String name;
    private String role;
    private String[] languageSpoken;

    public Student() {
        this.name = "Marcos";
        this.role = "Informática para Negócios";
        this.languageSpoken = new String[] {"pt_BR", "en_US"};
    }

    public void sayHi() {
        System.out.println("Obrigado por visitar, espero que ache interessante o meu perfil :)");
    }

    public static void main(String[] args) {
        Student me = new Student();
        me.sayHi();
    }
}

About

My personal repository.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors