swh:1:snp:505c374fd75bb208ae4e9a54e64bb310bc49295e
Raw File
Tip revision: 7382e6d22dbc814633ebf21870f5b4c907b4b947 authored by Emma Turner on 08 January 2024, 12:51:55 UTC
Kernel/EVM: flat fee is charged on every transaction
Tip revision: 7382e6d
main.ml
open Api
open Ctypes

let add (x : int) (y : int) =
  let x_ptr = Uintptr.of_int x in
  let y_ptr = Uintptr.of_int y in
  let res = Functions.add x_ptr y_ptr in
  Uintptr.to_int res
back to top