block_comment.txt 462 B

123456789101112131415161718192021222324252627
  1. %{ evaluate_this = false; % Evaluated as regular single-line comment
  2. evaluate_this = true;
  3. %}
  4. evaluate_this = true;
  5. %{
  6. This is a multi-line comment
  7. evaluate_this = false;
  8. %{
  9. %}
  10. evaluate_this = true;
  11. %{
  12. Opening (%{) and closing (%}) block comment markers can be within a comment block
  13. %}
  14. evaluate_this = true;
  15. %{
  16. Indented block comments can be indented
  17. or not
  18. and whitespace can be added before or after the %{ and %}
  19. %}
  20. evaluate_this = true;