From f1a3320ba374f560cfaea92e3edb5e49c06809e1 Mon Sep 17 00:00:00 2001 From: kbkpbot Date: Fri, 12 Sep 2025 16:34:18 +0800 Subject: [PATCH] cleanup --- vlib/builtin/int_d_new_int.v | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 vlib/builtin/int_d_new_int.v diff --git a/vlib/builtin/int_d_new_int.v b/vlib/builtin/int_d_new_int.v deleted file mode 100644 index 1e1700f5cb..0000000000 --- a/vlib/builtin/int_d_new_int.v +++ /dev/null @@ -1,7 +0,0 @@ -module builtin - -// str returns the value of the `int` as a `string`. -// Example: assert int(-2020).str() == '-2020' -// pub fn int_str(n int) string { -// return i64(n).str() -//}