Skip to content

Instantly share code, notes, and snippets.

@muhomerdogu
Created July 15, 2021 06:36
Show Gist options
  • Save muhomerdogu/efedb89a03cf9ed13359dd9c233b0796 to your computer and use it in GitHub Desktop.
Save muhomerdogu/efedb89a03cf9ed13359dd9c233b0796 to your computer and use it in GitHub Desktop.
package Test_4;
public class Test_4 {
private String code;
private String name;
private String continent;
private String region;
public Test_4(String code, String name, String continent,String region)
{
this.code=code;
this.continent=continent;
this.name=name;
this.region=region;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment