From 7fd3c65af6025db75e0a9515b49456265811a6b6 Mon Sep 17 00:00:00 2001 From: Eric Ludlam Date: Sat, 23 Nov 2019 08:52:58 -0500 Subject: [PATCH] Example cell script for testing matlab-shell. --- tests/cellscript.m | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tests/cellscript.m diff --git a/tests/cellscript.m b/tests/cellscript.m new file mode 100644 index 0000000..a26805d --- /dev/null +++ b/tests/cellscript.m @@ -0,0 +1,19 @@ +%% Script with Cells in it for testing 'run cell' +% + +if true + A = 1:10 +end + +%% Cell 2 + +if true + B = 10:15 +end + + +%% cell 3 + +if true + C = -10:-1 +end \ No newline at end of file