Develop #1

Open
HadiSharifi wants to merge 8 commits from develop into main
Showing only changes of commit 7f647d4073 - Show all commits
+7
View File
@@ -14,6 +14,7 @@ public class Song {
public String getSongName() {
return songName;
}
public String getArtist() {
return artist;
}
@@ -21,4 +22,10 @@ public class Song {
public String getSongAddress() {
return songAddress;
}
@Override
public String toString() {
String result = getSongName() + " By " + getArtist();
return result;
}
}