1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# build two 1024x1 vectors and multiply # them together let i = 0 let z[1024] loop 1024 { z[i] = i i = i + 1 } let x[1024] loop 1024 { z[i] = i i = i + 1 } let _ = z * x