Skip to content

Instantly share code, notes, and snippets.

@kizashitakata
Last active June 22, 2017 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kizashitakata/c2083092ec717feaedeb4bae5fde442b to your computer and use it in GitHub Desktop.
Save kizashitakata/c2083092ec717feaedeb4bae5fde442b to your computer and use it in GitHub Desktop.
sample02
public static void main(String[] args) {
List<String> mistir = new ArrayList<String>();
mistir.add("叡智");
zaki(mistir);
System.out.println(mistir.get(0));//”突然の死”
}
//即死呪文
private static void zaki(List<String> estark){
estark.add(0,"死");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment