diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-09-02 19:23:35 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-09-02 19:23:35 -0400 |
| commit | a4454df4b93e2e2d071fe9e364318e3615fd7a98 (patch) | |
| tree | d20fb9ce312bf278bc5f043322e0a52b5da006a6 /test/extern.tm | |
| parent | b0a8404bd7068c02f274978263fec00b8538d814 (diff) | |
Bugfix int parsing
Diffstat (limited to 'test/extern.tm')
| -rw-r--r-- | test/extern.tm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/extern.tm b/test/extern.tm index da3b1820..4823b21f 100644 --- a/test/extern.tm +++ b/test/extern.tm @@ -1,5 +1,5 @@ -extern CORD_cat:func(a:Text, b:Text)->Text +extern sqrt:func(n:Num)->Num func main(): - >> CORD_cat("hello ", "world") - = "hello world" + >> sqrt(4) + = 2 |
