about summary refs log tree commit diff stats
path: root/cpp/string-test.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-06 12:02:38 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-06 12:04:03 -0700
commitad8e984fd4590740cb6dc23e951848108f671aac (patch)
tree04c9c51d4506a6add01308b127d1819efdfade2c /cpp/string-test.mu
parentcc3b58b6370f27fb3fb600d6538a542c2fe44d36 (diff)
downloadmu-ad8e984fd4590740cb6dc23e951848108f671aac.tar.gz
1024 - basic skeleton for running scenarios
For now every scenario parses to the same dummy scenario.
Diffstat (limited to 'cpp/string-test.mu')
-rw-r--r--cpp/string-test.mu6
1 files changed, 0 insertions, 6 deletions
diff --git a/cpp/string-test.mu b/cpp/string-test.mu
deleted file mode 100644
index 5470af60..00000000
--- a/cpp/string-test.mu
+++ /dev/null
@@ -1,6 +0,0 @@
-recipe main [
-  default-space:address:space <- new location:type, 30:literal
-  x:address:array:character <- new [abc]
-  y:address:array:character <- new [abc]
-  3:boolean/raw <- string-equal x:address:array:character, y:address:array:character
-]