From 4f5cf197bec150fc6236339c82caaa61ff1572ec Mon Sep 17 00:00:00 2001 From: Chris Skalenda Date: Sat, 17 Jul 2010 16:52:21 -0600 Subject: [PATCH] dotnetpad: make end of line comments work. --- plugins/dotnetpad.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/dotnetpad.py b/plugins/dotnetpad.py index e38b6af..8ae18f5 100644 --- a/plugins/dotnetpad.py +++ b/plugins/dotnetpad.py @@ -62,12 +62,12 @@ def cs(snippet): class_template = ('public class Default ' '{' - ' %s ' + ' %s \n' '}') 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