view final_main/src/cbc_example.cbc @ 5:a592714b3c35

tweak
author menikon
date Thu, 06 Feb 2020 13:51:33 +0900
parents
children
line wrap: on
line source

__code cg0(Integer a, Integer b){
 int a_v = a->value;
 int b_v = b->value;
 Integer c = {a_v + b_v};
  goto cg1(c);
}
__code cg1(Integer c){
  goto cg2(c);
}