aboutsummaryrefslogtreecommitdiff
path: root/go/src/types
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2014-10-04 20:06:42 -0500
committerJoel Martin <github@martintribe.org>2014-10-04 20:06:42 -0500
commit45e1db6afbb0c63b1cd5d17e0996d7929803f37b (patch)
tree57aad492414d013e4d2b5b6eb81bc563244df02f /go/src/types
parent1ac751b20c8c6efe924737b0f88b9de6805bd5b4 (diff)
downloadmal-45e1db6afbb0c63b1cd5d17e0996d7929803f37b.tar.gz
mal-45e1db6afbb0c63b1cd5d17e0996d7929803f37b.zip
go: reading of atoms and lists.
Diffstat (limited to 'go/src/types')
-rw-r--r--go/src/types/types.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/go/src/types/types.go b/go/src/types/types.go
new file mode 100644
index 0000000..3f1c652
--- /dev/null
+++ b/go/src/types/types.go
@@ -0,0 +1,17 @@
+package types
+
+//type Error interface {
+// error
+//}
+
+type MalType interface {
+}
+
+type Symbol struct {
+ Val string
+}
+
+type List struct {
+ Val []MalType
+}
+