summaryrefslogtreecommitdiff
path: root/test.mat
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2024-02-29 21:05:10 -0500
committerFreya Murphy <freya@freyacat.org>2024-02-29 21:05:10 -0500
commitace046624d2e23fba67564a86af7f03ed8a48eae (patch)
tree21ae64bc5897b1b89ee2ab8563b0e7ce047bf34a /test.mat
parentfix readme (diff)
downloadmatrix-ace046624d2e23fba67564a86af7f03ed8a48eae.tar.gz
matrix-ace046624d2e23fba67564a86af7f03ed8a48eae.tar.bz2
matrix-ace046624d2e23fba67564a86af7f03ed8a48eae.zip
remove unwraps, fix utf8
Diffstat (limited to 'test.mat')
-rw-r--r--test.mat8
1 files changed, 8 insertions, 0 deletions
diff --git a/test.mat b/test.mat
new file mode 100644
index 0000000..71a04dd
--- /dev/null
+++ b/test.mat
@@ -0,0 +1,8 @@
+let a = 3
+{
+ a = 4;
+ const bees = \a => a*2;
+ let j = bees(3);
+ a = j;
+}
+let g = a + 'aaaa';