1
0
Fork 0
mirror of https://github.com/Reuh/anselme.git synced 2025-10-29 01:29:31 +00:00

Prefix type checkers with "is", stdlib cleanup

This commit is contained in:
Étienne Fildadut 2024-01-06 15:00:08 +01:00
parent 98917c2ca4
commit 7f71569e07
25 changed files with 163 additions and 160 deletions

View file

@ -1,7 +1,7 @@
:$ a - b
return("generic minus")
:$ a::string - b::string
:$ a::is string - b::is string
return(a + " minus " + b)
| {2-5}