From 2c564f0e48ae68e34d78cdce0f4a23945e01954f Mon Sep 17 00:00:00 2001 From: Chris Pressey Date: Thu, 16 Jun 2016 11:14:08 -0500 Subject: [PATCH] Add uncommitted example source, and fix names of 2 others. --- eg/{conditional.p60 => conditional.60p} | 0 eg/{conditional2.p60 => conditional2.60p} | 0 eg/copy.60p | 10 ++++++++++ 3 files changed, 10 insertions(+) rename eg/{conditional.p60 => conditional.60p} (100%) rename eg/{conditional2.p60 => conditional2.60p} (100%) create mode 100644 eg/copy.60p diff --git a/eg/conditional.p60 b/eg/conditional.60p similarity index 100% rename from eg/conditional.p60 rename to eg/conditional.60p diff --git a/eg/conditional2.p60 b/eg/conditional2.60p similarity index 100% rename from eg/conditional2.p60 rename to eg/conditional2.60p diff --git a/eg/copy.60p b/eg/copy.60p new file mode 100644 index 0000000..ffc07d1 --- /dev/null +++ b/eg/copy.60p @@ -0,0 +1,10 @@ +byte bar +byte baz + +routine main + inputs baz + outputs bar + trashes a, n, z +{ + copy baz, bar +}