alltypes.monkey2 440 B

1234567891011121314151617181920212223242526272829303132
  1. 'Ok, not quite *all* types, but getting there...
  2. '
  3. #Import "<std>"
  4. #Import "<mojo>"
  5. #Import "<mojox>"
  6. #Import "<mojo3d>"
  7. #Reflect std..
  8. #Reflect mojo..
  9. #Reflect mojox..
  10. #Reflect mojo3d..
  11. Function Main()
  12. 'This is all reflection.DebugTypes really does-ish...
  13. '
  14. For Local type:=Eachin TypeInfo.GetTypes()
  15. Print type
  16. For Local decl:=Eachin type.GetDecls()
  17. Print " "+decl
  18. Next
  19. Print ""
  20. End
  21. Print "Done!"
  22. End