github.com/sercand/please@v13.4.0+incompatible/test/cc_rules/clang/modules/q1.cc (about)

     1  import f1;
     2  module q1;
     3  
     4  int q(int n) {
     5    if (n == 0) {
     6      return 1;
     7    }
     8    return q(n-1)+n*f(n-1);
     9  }