123456789101112131415161718192021222324 |
- # -*- mode: org -*-
- Archived entries from file /home/swflint/org/test-java.org
- * TODO Comments
- :PROPERTIES:
- :ARCHIVE_TIME: 2014-09-06 Sat 22:16
- :ARCHIVE_FILE: ~/org/test-java.org
- :ARCHIVE_OLPATH: The Parser/Common Rules
- :ARCHIVE_CATEGORY: test-java
- :ARCHIVE_TODO: TODO
- :END:
- foo
- #+CAPTION: Comments
- #+Name: comments
- #+BEGIN_SRC lisp
- (defrule comment
- (or (and "//" (* (not-doublequote character)) #\Newline)
- (and "/*" (* (not-doublequote character)) "*/"))
- (:constant nil))
- #+END_SRC
|