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

examples: fix spectral.v

This commit is contained in:
Alexander Medvednikov 2020-12-21 08:50:31 +01:00
parent fc965b7d92
commit 9f964c9ce0

View File

@ -47,7 +47,7 @@ fn a_times_transp(mut v []f64, u []f64) {
fn main() {
mut n := 0
if os.args.len == 2 {
n = strconv.atoi(os.args[1])
n = strconv.atoi(os.args[1]) or { 0 }
} else {
n = 0
}