Arc Forumnew | comments | leaders | submitlogin
2 points by stefano 5997 days ago | link | parent

You can make a C function like this:

  int size_of_int ()
  {
    return sizeof(int);
  }
and import it. I've followed this route while writing gtk.arc, but probably there's a better way to do it.