fix CRLF in vfmt_off_vfmt_on_with_crlf_input.vv

This commit is contained in:
Delyan Angelov 2025-08-24 10:34:31 +03:00
parent d024223e64
commit 48b26b3b76
No known key found for this signature in database
GPG key ID: 66886C0F12D595ED

View file

@ -1,12 +1,12 @@
module main module main
fn main() { fn main() {
// vfmt off // vfmt off
a := [ a := [
1, 2, 3, 1, 2, 3,
4, 5, 6, 4, 5, 6,
] ]
// vfmt on // vfmt on
println('Hello World!') println('Hello World!')
} }