1# test builtin help function
2
3try:
4    help
5except NameError:
6    print("SKIP")
7    raise SystemExit
8
9help() # no args
10help(help) # help for a function
11help(int) # help for a class
12help(1) # help for an instance
13import micropython
14help(micropython) # help for a module
15help('modules') # list available modules
16
17print('done') # so last bit of output is predictable
18