Created
February 20, 2018 07:20
-
-
Save westdabestdb/2dc2a29be4878c91606c8ab1f7520b9c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Main { | |
String name = "Gorkem"; | |
String lastname = "Erol"; | |
public static void main(String[] args) { | |
Main app = new Main(); | |
Manipulator manipulator = new Manipulator(app.getClass()); | |
System.out.println("Hello, my name is ${name} ${lastname} !!"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment