summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndinus <andinus@inventati.org>2020-03-11 23:24:55 +0530
committerAndinus <andinus@inventati.org>2020-03-11 23:24:55 +0530
commitf7edf1c239cf374e1a22daca016dac47c35da88c (patch)
treed00bcdc9c4a839999033b97cff1ad54962a22947
parenteada6c013b2f611a1528fd989d4075e364f8e5ff (diff)
downloadcetus-f7edf1c239cf374e1a22daca016dac47c35da88c.tar.gz
Initialize program
-rw-r--r--go.mod3
-rw-r--r--main.go19
2 files changed, 22 insertions, 0 deletions
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..fd85b01
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,3 @@
+module framagit.org/andinus/cetus
+
+go 1.13
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..a208c0e
--- /dev/null
+++ b/main.go
@@ -0,0 +1,19 @@
+// Copyright (c) 2020, Andinus <andinus@inventati.org>
+
+// Permission to use, copy, modify, and/or distribute this software for any
+// purpose with or without fee is hereby granted, provided that the above
+// copyright notice and this permission notice appear in all copies.
+
+// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+package main
+
+func main() {
+
+}
garam <vc@akkartik.com> 2020-08-15 21:43:52 -0700 committer Kartik Agaram <vc@akkartik.com> 2020-08-15 21:43:52 -0700 6717' href='/akkartik/mu/commit/html/apps/hello.mu.html?h=hlt&id=1a1ab91e7728e59305361dbf8b97030ded472ae5'>1a1ab91e ^
d3a9db3a ^
3350c34a ^
1a1ab91e ^
































3350c34a ^
1a1ab91e ^
d3a9db3a ^


3350c34a ^
d3a9db3a ^
1a1ab91e ^
3d1c4216 ^
3350c34a ^
3d1c4216 ^
1a1ab91e ^




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71