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

bare: fix str[idx]

This commit is contained in:
Alexander Medvednikov
2019-11-16 11:33:04 +03:00
parent a545ccb740
commit dc50ed69cf
2 changed files with 5 additions and 1 deletions

View File

@ -7,3 +7,7 @@ pub fn panic(s string) {
//write(1, s.str, s.len)
}
pub fn panic_debug(s string) {
//write(1, s.str, s.len)
}