#
# $Id: runnable.icn,v 1.1 2004/02/12 17:07:57 rparlett Exp $
#
# This file is in the public domain.
#
# Author: Robert Parlett (parlett@dial.pipex.com)
#

package lang

class Runnable()
   #
   # An arbitrary block of code.
   #
   abstract method run()
end