add namespaces to names

This commit is contained in:
2024-12-26 18:51:46 -08:00
parent 9d90dd828e
commit 9655434b2a
27 changed files with 199 additions and 175 deletions

View File

@@ -235,10 +235,6 @@ infixr 7 _++_
class Concat a where
_++_ : a a a
ptype String
ptype Int
ptype Char
pfunc sconcat : String String String := `(x,y) => x + y`
instance Concat String where
_++_ = sconcat