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:
parent
fc965b7d92
commit
9f964c9ce0
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user