Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public class testScript {
  2. public testScript() {
  3.  
  4. }
  5.  
  6. public String test(String s) {
  7. s = "yes";
  8. return s;
  9. }
  10.  
  11. public static void main(String[] args) throws IOException {
  12. testScript testScript = new testScript();
  13. testScript.test("");
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement