Created
June 27, 2018 07:21
-
-
Save pareksha/def3302cfb5264278160cee89a04d12b 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 VB: | |
aliases = 'vb', | |
versions = 14.0, 15.0 | |
extensions = '.vb', | |
comment_delimiter = "'" | |
string_delimiters = {'"': '"'} | |
multiline_string_delimiters = {'"': '"'} | |
encapsulators = {'(': ')', '[': ']', '{': '}'} | |
escape_quotes = '""', |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment