diff options
Diffstat (limited to 'v_windows/v/vlib/builtin/js/int.js.v')
-rw-r--r-- | v_windows/v/vlib/builtin/js/int.js.v | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/v_windows/v/vlib/builtin/js/int.js.v b/v_windows/v/vlib/builtin/js/int.js.v new file mode 100644 index 0000000..08e52a9 --- /dev/null +++ b/v_windows/v/vlib/builtin/js/int.js.v @@ -0,0 +1,8 @@ +module builtin + +pub fn (i int) str() string { + mut res := '' + #res = new builtin.string( i ) + + return res +} |