File: default_args.py

package info (click to toggle)
mando 0.8.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 356 kB
  • sloc: python: 1,677; makefile: 191; sh: 2
file content (10 lines) | stat: -rw-r--r-- 119 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
from mando import command, main


@command
def po(a=2, b=3):
    print(a ** b)


if __name__ == '__main__':
    main()