From 5f6aae8d9da1e1ed0e5d11cfac02e5ffa6ef9e30 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 2 Feb 2019 19:50:25 -0800 Subject: [PATCH] Added inheritance section for tutorial --- lib/tools/tutorial.nom | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/lib/tools/tutorial.nom b/lib/tools/tutorial.nom index dd26ada..c74d088 100755 --- a/lib/tools/tutorial.nom +++ b/lib/tools/tutorial.nom @@ -270,15 +270,35 @@ $lessons = [ # This method is used to add to a buffer ($self, add $bit) means: $bits, add $bit + + # ($list, joined) is a list method that concatenates the list items: + ($self, as text) means ($bits, joined) # Write a method called ($self, length) that returns the sum of the lengths of each bit in the buffer: + + # Create an instance of a Buffer: $b = (a Buffer) + test that ($b is "a Buffer") + test that ((type of $b) == "a Buffer") $b, add "xx" $b, add "yyy" + test that (($b, as text) == "xxyy") test that (($b, length) == 5) + # You can define a thing that inherits the behaviors of another thing like this: + (a Backwards Buffer) is (a Buffer) with [$bits]: + # ($list, reversed) is a method that returns a copy of $list with + the order of the items reversed. + ($self, as text) means ($bits, reversed, joined) + + $bb = (a Backwards Buffer) + $bb, add "one" + $bb, add "two" + test that (($bb, length) == (???)) + test that (($bb, as text) == (???)) + lesson "Files Part 1": # Define an external action here: external: