Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public class Communication {
  2. public static String hello(String name) {
  3. return "Hallo " + name + "!";
  4. }
  5. public static void main(String [] args) {
  6. System.out.println("Welt");
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement