From 3421824b1905a3db69a5a0b0bf32741700e009b7 Mon Sep 17 00:00:00 2001 From: Patrick Thomson Date: Fri, 25 Oct 2019 13:47:58 -0400 Subject: [PATCH] new comment style --- semantic-python/src/Prelude.score | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/semantic-python/src/Prelude.score b/semantic-python/src/Prelude.score index e9b386c78..22abd5645 100644 --- a/semantic-python/src/Prelude.score +++ b/semantic-python/src/Prelude.score @@ -5,7 +5,7 @@ instance <- \class -> \prim -> \slots -> #record { __super: class, __prim: prim, __slots: slots }; - -- object's superclass is type itself + // object's superclass is type itself object <- type "object" type #record{}; str <- type "str" object #record { };