expr params implemented for procs; paving the way for type classes

This commit is contained in:
Zahary Karadjov
2012-03-21 23:48:03 +02:00
parent 4f22326b24
commit 3a5cf3d63a
6 changed files with 88 additions and 29 deletions

View File

@@ -1,2 +1,2 @@
import uclosures, utemplates
import uclosures, utemplates, uexpr

13
tests/run/uexpr.nim Normal file
View File

@@ -0,0 +1,13 @@
import unittest
proc concat(a, b): string =
result = $a & $b
test "if proc param types are not supplied, the params are assumed to be generic":
check concat(1, "test") == "1test"
check concat(1, 20) == "120"
check concat("foo", "bar") == "foobar"
test "explicit param types can still be specified":
check concat[cstring, cstring]("x", "y") == "xy"