Files
newt/src/Data/Int.newt
Steve Dunham 3c2615ecc1 move idris version to orig and newt version to src.
Development is being done on the newt version now.
2025-02-15 16:36:29 -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