This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues or pull requests.
DeskHubSharp/DeskHubSharp.Models/Math.fs

9 lines
104 B
Forth
Raw Permalink Normal View History

2018-12-16 13:35:17 -06:00
module Math
let addOne x = x + 1
let square x = x * x
let slash x = x / x
let recursive x = 1 / x