1# test builtin object()
2
3# creation
4object()
5
6# printing
7print(repr(object())[:7])
8