Skip to content

Instantly share code, notes, and snippets.

@axayjha
Created October 2, 2018 20:43
Show Gist options
  • Save axayjha/3813f3ca555b2c45ea4563c5d5f58a4d to your computer and use it in GitHub Desktop.
Save axayjha/3813f3ca555b2c45ea4563c5d5f58a4d to your computer and use it in GitHub Desktop.
package com.example.demo;
public class Triangle {
private String type;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public void draw() {
System.out.println(getType() + " triangle drawn");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment