Skip to content

Instantly share code, notes, and snippets.

@huowa222
Last active May 30, 2016 16:08
Show Gist options
  • Save huowa222/6080790 to your computer and use it in GitHub Desktop.
Save huowa222/6080790 to your computer and use it in GitHub Desktop.
hello , my first gist code
public class sexIdentifier {
public static final String HOMOSEXUAL = "homo";
public static final String STRAIGHT = "straight";
public static void main(String args[]){
public String identifyGender(String yourGender, String belovedGender){
if(yourGender.equals(belovedGender)){
return HOMOSEXUAL;
}else{
return STRAIGHT;
}
}
}
}
@huowa222
Copy link
Author

funny? that's my first github open source

@byte-voyager
Copy link

have some error

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment