14 lines
309 B
Python
14 lines
309 B
Python
|
# This is a comment.
|
||
|
'''This is a big fat string.'''
|
||
|
from fileio import open
|
||
|
from syntax.highlighter import KurokoHighlighter, toTerminal
|
||
|
|
||
|
let h
|
||
|
with open('test/testSyntaxHighlighter.krk') as f:
|
||
|
h = KurokoHighlighter(f.read())
|
||
|
|
||
|
h.highlight()
|
||
|
print(h.linestates)
|
||
|
print(h.process())
|
||
|
toTerminal(h.process())
|