File: functions.tr

package info (click to toggle)
turing 0.11-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,340 kB
  • sloc: python: 106,582; xml: 101; makefile: 53; sh: 29
file content (9 lines) | stat: -rw-r--r-- 278 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
BlockStmt([
            FuncStmt("f1", ["n"], [
                FuncStmt("f2", ["n"], [
                    ReturnStmt(parse("{m}({n}(m*n))(n)"))
                ]),
                ReturnStmt(parse("f2(n)"))
            ]),
            DisplayStmt(parse("f1(3)(4)"))
        ])