blob: 71a42f8431d0cbefe28363c85de08d7a6ca62ddf [file] [log] [blame]
int factorial(int x) {
return (x <= 1) ? 1 : x * factorial(x - 1);
}
half4 main() {
return half4(factorial(7));
}