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
| seconds = 2 | |
| minutes = 2 | |
| units = ["seconds", "minutes"] | |
| str_out = "#{#{units[0]}}" # Returns "2" |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project version="4"> | |
| <component name="KotlinCommonCompilerArguments"> | |
| <option name="languageVersion" value="1.1" /> | |
| <option name="apiVersion" value="1.1" /> | |
| </component> | |
| </project> |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project version="4"> | |
| <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" project-jdk-name="1.8" project-jdk-type="JavaSDK"> | |
| <output url="file://$PROJECT_DIR$/out" /> | |
| </component> | |
| <component name="masterDetails"> | |
| <states> | |
| <state key="ProjectJDKs.UI"> | |
| <settings> | |
| <last-edited>1.8</last-edited> |
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 matchday; | |
| import java.util.ArrayList; | |
| import java.util.regex.*; | |
| public class Bundesliga { | |
| private static ArrayList<String> objectsEncountered = new ArrayList<>(); | |
| void setObjectsEncountered(String objectsEncountered) { |
NewerOlder