From 10621d5024a512c14b27158806b83c794ba20472 Mon Sep 17 00:00:00 2001 From: John Wrenn Date: Fri, 20 May 2016 15:10:13 -0400 Subject: [PATCH] Create pyret.arr This is an implementation of *Hello, World!* for the [Pyret](https://www.pyret.org/) programming language. This program may be verified for correctness in Pyret's [online editor](https://code.pyret.org/editor#share=0Bwbi1nc7r013YXZVaUNDLUdWQ0E). --- p/pyret.arr | 1 + 1 file changed, 1 insertion(+) create mode 100644 p/pyret.arr diff --git a/p/pyret.arr b/p/pyret.arr new file mode 100644 index 00000000..09907203 --- /dev/null +++ b/p/pyret.arr @@ -0,0 +1 @@ +print('Hello, World!')