some message tests, all ok

This commit is contained in:
Torsten Ruger
2015-10-27 18:08:40 +02:00
parent bb908dcf76
commit 444ad75e1e
3 changed files with 55 additions and 1 deletions

View File

@ -40,7 +40,9 @@ module Parfait
# push means add to the end
# this automatically grows the List
def push value
set( self.get_length + 1 , value)
to = self.get_length + 1
set( to , value)
to
end
def delete value