dotnetpad: make end of line comments work.

This commit is contained in:
Chris Skalenda 2010-07-17 16:52:21 -06:00
parent 93f626c482
commit 4f5cf197be
1 changed files with 2 additions and 2 deletions

View File

@ -62,12 +62,12 @@ def cs(snippet):
class_template = ('public class Default ' class_template = ('public class Default '
'{' '{'
' %s ' ' %s \n'
'}') '}')
main_template = ('public static void Main(String[] args) ' main_template = ('public static void Main(String[] args) '
'{' '{'
' %s ' ' %s \n'
'}') '}')
# There are probably better ways to do the following, but I'm feeling lazy # There are probably better ways to do the following, but I'm feeling lazy