Skip to content

Commit 625aa6b

Browse files
authored
Merge pull request #102 from ldrygala/create-scala-core-fp-module
move currying to scala-core-fp
2 parents 7fa4303 + 1b5a13b commit 625aa6b

File tree

4 files changed

+14
-1
lines changed

4 files changed

+14
-1
lines changed

build.sbt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ lazy val scala_core_oop = (project in file("scala-core-oop"))
1717
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test"
1818
)
1919

20+
lazy val scala_core_fp = (project in file("scala-core-fp"))
21+
.settings(
22+
name := "scala-core-fp",
23+
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.5" % Test,
24+
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test"
25+
)
26+
2027
lazy val scala_lang = (project in file("scala-lang"))
2128
.settings(
2229
name := "scala-lang",

scala-core-fp/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## Core Scala FP tutorials
2+
3+
This module contains articles about Scala's Functional Programming features
4+
5+
### Relevant Articles
6+
7+
- [Currying in Scala](https://www.baeldung.com/scala/currying)

scala-core/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,4 @@ This module contains articles about Scala's core features
1717
- [An Introduction to Scala Extractor Objects](https://www.baeldung.com/scala/extractor-objects)
1818
- [A Comprehensive Guide to For-Comprehension in Scala](https://www.baeldung.com/scala/for-comprehension)
1919
- [Introduction to Traits in Scala](https://www.baeldung.com/scala/traits)
20-
- [Currying in Scala](https://www.baeldung.com/scala/currying)
2120
- [Exception Handling in Scala](https://www.baeldung.com/scala/exception-handling)

0 commit comments

Comments
 (0)