aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-11-03 10:15:49 -0300
committerEuAndreh <eu@euandre.org>2024-11-19 19:10:45 -0300
commit6c4eb1aa31b670d32910d4881b0801eac8265057 (patch)
tree85fc6f0615fb503317da6782d073fa127bc71e60 /src
parentAdd byte position to nodes of a syntax tree (diff)
downloadcotia-6c4eb1aa31b670d32910d4881b0801eac8265057.tar.gz
cotia-6c4eb1aa31b670d32910d4881b0801eac8265057.tar.xz
Setup Makefile project structure with empty src/urubu.go source
Diffstat (limited to 'src')
-rw-r--r--src/main.go7
-rw-r--r--src/urubu.go6
2 files changed, 13 insertions, 0 deletions
diff --git a/src/main.go b/src/main.go
new file mode 100644
index 0000000..d9c9b31
--- /dev/null
+++ b/src/main.go
@@ -0,0 +1,7 @@
+package main
+
+import "urubu"
+
+func main() {
+ urubu.Main()
+}
diff --git a/src/urubu.go b/src/urubu.go
new file mode 100644
index 0000000..024989a
--- /dev/null
+++ b/src/urubu.go
@@ -0,0 +1,6 @@
+package urubu
+
+
+
+func Main() {
+}