1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

builtin: i32 alias

This commit is contained in:
Alexander Medvednikov 2021-09-08 14:48:49 +03:00
parent e5360e164a
commit 55451baa03

View File

@ -8,6 +8,7 @@ module builtin
//
type u8 = byte
type i32 = int
// ptr_str returns the address of `ptr` as a `string`.
pub fn ptr_str(ptr voidptr) string {