Files
newt/done/Data/Int.newt
2025-01-02 10:05:27 -08:00

13 lines
164 B
Agda

module Data.Int
import Prelude
div : Int Int Int
div a b = a / b
instance Cast Char Int where
cast = ord
instance Cast Int String where
cast = show