ashlang 0.1.3

A language for zero knowledge proofs
Documentation
# 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