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
2018-12-16 14:35:17 -05:00

9 lines
104 B
Forth

module Math
let addOne x = x + 1
let square x = x * x
let slash x = x / x
let recursive x = 1 / x