allow_strings_as_comments.gd 180 B

123456789101112131415161718192021
  1. """
  2. This is a comment.
  3. """
  4. @tool
  5. """
  6. This is also a comment.
  7. """
  8. extends RefCounted
  9. '''
  10. This is a comment too.
  11. '''
  12. func test():
  13. """
  14. This too is a comment.
  15. """
  16. print("ok")