From 7c6047254e5aa7ce5a0667b14676b22a7447f956 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 10 Sep 2018 16:26:08 -0700 Subject: Upgraded to 3.8 (text method changes) and fixed some bugs in tree_to_nomsu. --- lib/object.nom | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/object.nom') diff --git a/lib/object.nom b/lib/object.nom index 81632c2..897657c 100644 --- a/lib/object.nom +++ b/lib/object.nom @@ -1,4 +1,4 @@ -#!/usr/bin/env nomsu -V3.7.5.6 +#!/usr/bin/env nomsu -V3.8.7.6 # This file contains the implementation of an Object-Oriented programming system. @@ -8,7 +8,7 @@ test: my action [set up]: %me.barks or= 0 my action [bark, woof]: %barks = ("Bark!" for % in 1 to %me.barks) - return (%barks joined with " ") + return (%barks::joined with " ") my action [get pissed off]: %me.barks += 1 @@ -31,7 +31,7 @@ test: my action [sploot] "splooted" my action [bark, woof]: %barks = ("Yip!" for % in 1 to %me.barks) - return (%barks joined with " ") + return (%barks::joined with " ") %corg = (new Corgi) assume (%corg.barks == 0) -- cgit v1.2.3