v/vlib/builtin/js/int.js.v

9 lines
108 B
V

module builtin
pub fn (i int) str() string {
mut res := ''
#res = new builtin.string( i )
return res
}