zink-lang / zink

Rustic programming language that targets the Ethereum Virtual Machine
https://zink-lang.org
GNU General Public License v3.0
139 stars 13 forks source link

Introduce evm operators #190

Open clearloop opened 11 months ago

clearloop commented 11 months ago

Describe the feature

follow the implementation of wasm operators

https://docs.rs/wasmparser/0.107.0/wasmparser/enum.Operator.html

for example, the operator of opcode ADD

pub struct Add {
  a: Vec<u8>,
  b: Vec<u8>
}

Solution

No response