Move up Example.Tests a level

This commit is contained in:
Sven van Heugten 2026-04-27 23:11:09 +02:00
parent 07cdb478a2
commit 28ae18b480
No known key found for this signature in database
GPG key ID: D612F88666F4F660
4 changed files with 3 additions and 3 deletions

View file

@ -0,0 +1,10 @@
namespace Example
module Calculator =
let addOne value = value + 1
let absoluteDifference left right =
if left >= right then left - right else right - left
let isLeapYear year =
year % 4 = 0 && (year % 100 <> 0 || year % 400 = 0)