diff options
-rw-r--r-- | io/exec.io | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/io/exec.io b/io/exec.io new file mode 100644 index 0000000..fa83840 --- /dev/null +++ b/io/exec.io @@ -0,0 +1,7 @@ +Vehicle := Object clone +Vehicle drive := method("Vrooom!" println) + +Car := Vehicle clone + +ferrari := Vehicle clone +ferrari drive |