view paper/src/goto.cbc @ 144:060202b21724 default tip

Bookbinding
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Mon, 27 Feb 2017 20:29:43 +0900
parents 6bf2e0196a1e
children
line wrap: on
line source

__code cs0(int a, int b){
  goto cs1(a+b);
}

__code cs1(int c){
  goto cs2(c);
}