annotate paper/src/goto.cbc @ 19:046b2b20d6c7 default tip

fix
author ryokka
date Mon, 09 Mar 2020 11:25:49 +0900
parents c7acb9211784
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
1 __code cs0(int a, int b){
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
2 goto cs1(a+b);
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
3 }
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
4
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
5 __code cs1(int c){
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
6 goto cs2(c);
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
7 }