Skip to content

Instantly share code, notes, and snippets.

@ovidijusr
Created April 26, 2017 13:51
Show Gist options
  • Save ovidijusr/4e8a4e77f34d70803df2e14adc458c6f to your computer and use it in GitHub Desktop.
Save ovidijusr/4e8a4e77f34d70803df2e14adc458c6f to your computer and use it in GitHub Desktop.
public class Main {
public static void main(String[] args) {
Objektas labas = new Objektas(""); //sukuriamas objektas
labas.get(); // objekto metodas
}
}
public class Objektas {
void get(){
System.out.println("sveiki");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment