Skip to content

Instantly share code, notes, and snippets.

@pareksha
Created June 27, 2018 07:21
Show Gist options
  • Save pareksha/def3302cfb5264278160cee89a04d12b to your computer and use it in GitHub Desktop.
Save pareksha/def3302cfb5264278160cee89a04d12b to your computer and use it in GitHub Desktop.
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