This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coffee.pygments/tests/examplefiles/scheme/r6rs-comments.scm.output

96 lines
2.5 KiB
Text
Generated

'#!r6rs' Comment
'\n\n' Text.Whitespace
'#|' Comment.Multiline
'\n\n The FACT procedure computes the factorial\n\n of a non-negative integer.\n\n ' Comment.Multiline
'#|' Comment.Multiline
' These comments can be nested too. ' Comment.Multiline
'|#' Comment.Multiline
'\n\n' Comment.Multiline
'|#' Comment.Multiline
'\n\n' Text.Whitespace
'(' Punctuation
'define' Keyword
' ' Text.Whitespace
'fact' Name.Variable
'\n\n ' Text.Whitespace
'(' Punctuation
'lambda' Keyword
' ' Text.Whitespace
'(' Punctuation
'n' Name.Function
')' Punctuation
'\n\n ' Text.Whitespace
';; base case' Comment.Single
'\n\n ' Text.Whitespace
'(' Punctuation
'if' Keyword
' ' Text.Whitespace
'(' Punctuation
'=' Name.Builtin
' ' Text.Whitespace
'n' Name.Variable
' ' Text.Whitespace
'0' Literal.Number.Integer
')' Punctuation
'\n\n ' Text.Whitespace
'#;(' Comment
'= n 1' Comment
')' Comment
'\n ' Text.Whitespace
'#;(' Comment
'= n ' Comment
'[' Comment
'1+ ' Comment
'(' Comment
"eval '" Comment
'(' Comment
'n' Comment
')' Comment
')' Comment
']' Comment
')' Comment
'1' Literal.Number.Integer
'\n ' Text.Whitespace
'#;[' Comment
'= n ' Comment
'(' Comment
'1+ ' Comment
'[' Comment
"eval '" Comment
'[' Comment
'n' Comment
']' Comment
']' Comment
')' Comment
']' Comment
';; another comment' Comment.Single
'\n ' Text.Whitespace
'#;' Comment
'1' Comment
'\n ' Text.Whitespace
'; identity of *' Comment.Single
'\n\n ' Text.Whitespace
'(' Punctuation
'*' Name.Builtin
' ' Text.Whitespace
'n' Name.Variable
' ' Text.Whitespace
'(' Punctuation
'fact' Name.Function
' ' Text.Whitespace
'(' Punctuation
'-' Name.Builtin
' ' Text.Whitespace
'n' Name.Variable
' ' Text.Whitespace
'1' Literal.Number.Integer
')' Punctuation
')' Punctuation
')' Punctuation
')' Punctuation
')' Punctuation
')' Punctuation
'\n' Text.Whitespace