Files
newt/src/Data/String.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

10 lines
155 B
Agda

module Data.String
import Prelude
unwords : List String String
unwords stuff = joinBy " " stuff
instance Cast String Int where
cast = stringToInt