Skip to content

Commit

Permalink
Merge ba36b3d into b1a6997
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron committed Feb 7, 2019
2 parents b1a6997 + ba36b3d commit d17ef9e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pycco/languages.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,14 @@ def lang(name, comment_symbol, multistart=None, multiend=None):
".tcl": lang("tcl", HASH),

".hs": lang("haskell", DASH_DASH, "{-", "-}"),

".r": lang("r", HASH),
".R": lang("r", HASH),

".jl": lang("julia", HASH, "#=", "=#"),

".m": lang("matlab", "%", "%{", "%}"),

".do": lang("stata", SLASH_SLASH, SLASH_STAR, STAR_SLASH)

}

0 comments on commit d17ef9e

Please sign in to comment.