mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
string cloning; fix foo.str += 's'
This commit is contained in:
@ -4,6 +4,10 @@
|
||||
|
||||
module builtin
|
||||
|
||||
pub fn println(s string) {
|
||||
C.printf('%.*s\n', s.len, s.str)
|
||||
}
|
||||
|
||||
fn print_backtrace_skipping_top_frames_msvc(skipframes int) bool {
|
||||
println('not implemented, see builtin_windows.v')
|
||||
return false
|
||||
|
Reference in New Issue
Block a user