Scala training repository used to learn Scala and Functional Programming by solving some common katas using just purely functional programming with Cats.
# | Kata Statement | PR | Topic |
---|---|---|---|
1 | Maxibons | #1 | Polymorphic programming |
2 | Form validation | #2 | Validated data type |
3 | Game of Life | #4 | Infinite canvas implementation of the GoL with complex property-based generators and interesting lazy vals usage |
This project contains some tests written using ScalaTest and ScalaCheck. You can easily run the tests by executing any of the following commands:
sbt test // Runs every test in your project
sbt test-only *AnySpec // Runs specs matching with the filter passed as param.
For the project checkstyle we are using ScalaFMT. The code format will be evaluated after accepting any contribution to this repository using this tool. You can easily format your code changes automatically by executing sbt format
.
- Pedro Vicente Gómez Sánchez - pedrovicente.gomez@gmail.com
Copyright 2019 Pedro Vicente Gómez Sánchez
Licensed under the GNU General Public License, Version 3 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.gnu.org/licenses/gpl-3.0.en.html
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.