Created
June 27, 2018 06:58
-
-
Save pareksha/5379e91460b8e5a0ec8813ec6a280d2f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from coalib.bearlib.languages.Language import Language | |
@Language | |
class m4: | |
versions = 1.4, | |
extensions = '.m4', | |
comment_delimiter = '#' | |
multiline_comment_delimiters = {'/*': '*/'} | |
string_delimiters = {'`': "'", '"': '"'} | |
encapsulators = {'(': ')', '{': '}', '[': ']'} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment