diff options
| author | Joel Martin <github@martintribe.org> | 2015-02-07 20:32:06 -0600 |
|---|---|---|
| committer | Joel Martin <github@martintribe.org> | 2015-02-07 20:32:24 -0600 |
| commit | 9a54ea186c2c7646d014b97774adfc418e9ab9c9 (patch) | |
| tree | 7fcb4abf81594a0075c5356724140e65554eefe6 /matlab/+types | |
| parent | 882b43289ecc0c13a030605b68be52107b1c64b5 (diff) | |
| download | mal-9a54ea186c2c7646d014b97774adfc418e9ab9c9.tar.gz mal-9a54ea186c2c7646d014b97774adfc418e9ab9c9.zip | |
matlab: step0 and step1 basics.
Diffstat (limited to 'matlab/+types')
| -rw-r--r-- | matlab/+types/Symbol.m | 10 |
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 |
