aboutsummaryrefslogtreecommitdiff
path: root/matlab/+types
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2015-02-07 20:32:06 -0600
committerJoel Martin <github@martintribe.org>2015-02-07 20:32:24 -0600
commit9a54ea186c2c7646d014b97774adfc418e9ab9c9 (patch)
tree7fcb4abf81594a0075c5356724140e65554eefe6 /matlab/+types
parent882b43289ecc0c13a030605b68be52107b1c64b5 (diff)
downloadmal-9a54ea186c2c7646d014b97774adfc418e9ab9c9.tar.gz
mal-9a54ea186c2c7646d014b97774adfc418e9ab9c9.zip
matlab: step0 and step1 basics.
Diffstat (limited to 'matlab/+types')
-rw-r--r--matlab/+types/Symbol.m10
1 files changed, 10 insertions, 0 deletions
diff --git a/matlab/+types/Symbol.m b/matlab/+types/Symbol.m
new file mode 100644
index 0000000..1a06037
--- /dev/null
+++ b/matlab/+types/Symbol.m
@@ -0,0 +1,10 @@
+classdef Symbol
+ properties
+ name
+ end
+ methods
+ function sym = Symbol(name)
+ sym.name = name;
+ end
+ end
+end