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

12 lines
162 B
Agda

module Data.String
import Prelude
class Interpolation a where
interpolate : a String
unwords : List String String
unwords stuff = joinBy " " stuff