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
final List<String> fullNames = new ArrayList<>(); | |
for (Name name : names) { | |
fullNames.add(String.format("%s %s", name.getFirst(), name.getLast())); | |
} |
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
.idea | |
*.iml | |
out | |
target | |
.DS_Store |
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
22:05 $ git diff | |
diff --git a/build.sbt b/build.sbt | |
index ed3e7bb..c220485 100644 | |
--- a/build.sbt | |
+++ b/build.sbt | |
@@ -11,6 +11,7 @@ lazy val cats = (project in file(".")) | |
dep("exercise-compiler"), | |
dep("definitions"), | |
%%("cats-core", "0.7.2"), | |
+ %%("cats-free", "0.7.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
package org.ml10 | |
import scribe._ | |
object ScribeDoubleInfo extends App { | |
debug("debug") | |
info("info") | |
configureLogging("org.ml10.ScribeDoubleInfo", false) | |
info("info") | |
debug("debug") |