base.py 784 B

1234567891011121314151617181920212223
  1. HELP_INFO = r'''[option]
  2. help
  3. -v Show version info
  4. -h Show help page
  5. run
  6. The first parameter is the running file
  7. The following parameters are command line parameters
  8. cl
  9. -e/--eval Run argument as code
  10. -f/--file Run file (.aun or .aub)
  11. -s/--source Run source file
  12. -b/--byte Run byte-code file
  13. --no-aub Do not save byte-code after run source file
  14. --no-cl Do not use command line
  15. The free parameter before -- will be interpreted as the -f parameter
  16. The free parameter after -- will be interpreted as the command line parameters
  17. build
  18. -o File output path
  19. -p File output dir
  20. -f Force build
  21. [Github page]
  22. <https://github.com/aFun-org/aFunlang>'''