Changed native's string repr

This commit is contained in:
nocturn9x 2021-01-05 13:15:47 +01:00
parent 875440ba8c
commit d05e45d3b6
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ proc typeName*(self: ptr Native): string =
proc stringify*(self: ptr Native): string =
if self.name != nil:
result = "<function '" & self.name.toStr() & "'>"
result = "<built-in function '" & self.name.toStr() & "'>"
else:
result = "<code object>"