Last active
November 17, 2018 08:22
-
-
Save Barala/462535f940ddf09700a82925b12f3db8 to your computer and use it in GitHub Desktop.
Manto ek insaan hai
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
package manto; | |
/** | |
* | |
* @author manto | |
* | |
*/ | |
public abstract class Manto { | |
protected final String manto = "Manto ek insaan hai"; | |
public Manto() { | |
// Manto ek concept hai | |
} | |
public abstract String mantoKaunHai(); | |
@Override | |
public String toString() { | |
return this.manto; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment