999help.mql 363 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. help()
  2. /**
  3. output()
  4. **/
  5. ;
  6. help('class')
  7. /**
  8. output()
  9. **/
  10. ;
  11. help('class', "/")
  12. /**
  13. output()
  14. **/
  15. ;
  16. help('class', "/matrix")
  17. /**
  18. output()
  19. **/
  20. ;
  21. help('class', "/matrix/")
  22. /**
  23. output()
  24. **/
  25. ;
  26. help('class', "*")
  27. /**
  28. output()
  29. **/
  30. ;
  31. help('class', "/matrix*")
  32. /**
  33. output()
  34. **/
  35. ;
  36. help('class', "/*")
  37. /**
  38. output()
  39. **/
  40. ;
  41. help('class', '/matrix/*')
  42. /**
  43. output()
  44. **/
  45. ;