File tree Expand file tree Collapse file tree 4 files changed +14
-1
lines changed
src/test/scala/com/baeldung/scala/currying Expand file tree Collapse file tree 4 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,13 @@ lazy val scala_core_oop = (project in file("scala-core-oop"))
17
17
libraryDependencies += " com.novocode" % " junit-interface" % " 0.11" % " test"
18
18
)
19
19
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
+
20
27
lazy val scala_lang = (project in file(" scala-lang" ))
21
28
.settings(
22
29
name := " scala-lang" ,
Original file line number Diff line number Diff line change
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 )
File renamed without changes.
Original file line number Diff line number Diff line change @@ -17,5 +17,4 @@ This module contains articles about Scala's core features
17
17
- [ An Introduction to Scala Extractor Objects] ( https://www.baeldung.com/scala/extractor-objects )
18
18
- [ A Comprehensive Guide to For-Comprehension in Scala] ( https://www.baeldung.com/scala/for-comprehension )
19
19
- [ Introduction to Traits in Scala] ( https://www.baeldung.com/scala/traits )
20
- - [ Currying in Scala] ( https://www.baeldung.com/scala/currying )
21
20
- [ Exception Handling in Scala] ( https://www.baeldung.com/scala/exception-handling )
You can’t perform that action at this time.
0 commit comments