mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
16 lines
139 B
Forth
16 lines
139 B
Forth
|
void F2(void);
|
||
|
void F3(void);
|
||
|
|
||
|
void F2(void) {
|
||
|
}
|
||
|
|
||
|
void F3(void) {
|
||
|
F2();
|
||
|
}
|
||
|
|
||
|
void main(void) {
|
||
|
F3();
|
||
|
gl_FragColor = vec4(0.0);
|
||
|
return;
|
||
|
}
|