Hey stackoverflow community!
Kind of a newcomer to coding, so please go easy on me.
Basically I'm trying to get this code to return the owner when I call the getOwner method. All of this is in java!
Here's my code:
public class SmartCard<__name__> {
public __name__ owner;
public __name__ getOwner(){
return owner;
}
}
Am I approaching this the wrong way? Thanks for the help :)