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
| import java.util.ArrayList; | |
| import java.util.List; | |
| public class Main { | |
| public static void main(String[] args) { | |
| // Let's map some Riyadh's Mosques and Roads around QSS! | |
| List<Mappable> mappables = new ArrayList<>(); | |
| mappables.add(new Mosque("Al-Rajhi", "Al-Jazeera", "Riyadh")); | |
| mappables.add(new Mosque("Uthman Ibn Affan", "Qurtubah", "Riyadh")); |
OlderNewer