From 758edda5ce4967fe9faf521474fc008f9c52bfe6 Mon Sep 17 00:00:00 2001 From: Jon Rafkind Date: Fri, 19 Aug 2011 17:21:56 -0600 Subject: [PATCH] [honu] accidentally added these files, so removing them --- collects/honu/tests/if.rkt | 6 ------ collects/honu/tests/list.rkt | 5 ----- collects/honu/tests/map.rkt | 3 --- 3 files changed, 14 deletions(-) delete mode 100644 collects/honu/tests/if.rkt delete mode 100644 collects/honu/tests/list.rkt delete mode 100644 collects/honu/tests/map.rkt diff --git a/collects/honu/tests/if.rkt b/collects/honu/tests/if.rkt deleted file mode 100644 index e73429f4de..0000000000 --- a/collects/honu/tests/if.rkt +++ /dev/null @@ -1,6 +0,0 @@ -#lang honu - -if true then - 5 -else - 9 diff --git a/collects/honu/tests/list.rkt b/collects/honu/tests/list.rkt deleted file mode 100644 index 24abfbc622..0000000000 --- a/collects/honu/tests/list.rkt +++ /dev/null @@ -1,5 +0,0 @@ -#lang honu - -[x + 2: x <- [1, 2, 3]]; - -[x + y: x <- [1, 2, 3], y <- [5, 6, 7]] diff --git a/collects/honu/tests/map.rkt b/collects/honu/tests/map.rkt deleted file mode 100644 index 4c7a7a9260..0000000000 --- a/collects/honu/tests/map.rkt +++ /dev/null @@ -1,3 +0,0 @@ -#lang honu - -function(x){ x + 1 } map 1 :: 2 :: 3 :: null;