view Paper/src/excbc.cbc @ 0:a5facba1adbc

first
author ryokka
date Fri, 13 Apr 2018 18:07:04 +0900
parents
children
line wrap: on
line source

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

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