Skip to content
Snippets Groups Projects
Commit 0abe6627 authored by Ali Sinan Köksal's avatar Ali Sinan Köksal
Browse files

calendar example with two versions

parent 6199a722
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ object Calendar extends App {
println("Year : %d, day : %d" format (year, day))
/* alternate version with intermediate "leapDaysUntil" variables
/* alternate version with intermediate "leapDaysUntil" variables */
def yearAndDay(totalDays : Int, originYear : Int) : (Int, Int) = {
val (y, d, _, _) = ((year : Int, day : Int, lduYear : Int, lduOrigin : Int) => totalDays == (year - originYear) * 365 + lduYear - lduOrigin + day &&
......@@ -22,7 +22,7 @@ object Calendar extends App {
(y, d)
}
*/
println("Second version: " + yearAndDay(totalDays, originYear))
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment