first impl of builtin member methods (thus far, string.size implemented. more to...
[aqualang.git] / src / builtin.string.cpp
blob90b645276c5683876d99ebc5d224ba49ff100baf
2 #include "private.h"
3 #include "builtin.h"
5 BUILTIN_PROTO(rtbuiltin_func_string_length, ip, self)
7 (void)ip;
8 return self.string().size();