7.マクロ


1/*inlineマクロ*/
2 inline showHello(x){
3     printf("%d\n",x);
4 }
5 active proctype hello(){
6     showHello(2);
7 }