Please enable JavaScript in your browser!
Home
Explore
Help
Sign In
sam
/
helloworld
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Commits
3
Releases
0
Wiki
Browse Source
Add go hello world
Sam Mulube
1 year ago
parent
f756e0bc66
commit
b8ad4ba70e
1 changed files
with
7 additions
and
0 deletions
Split View
Show Diff Stats
7
0
main.go
+ 7
- 0
main.go
View File
@@ -0,0 +1,7 @@
1
+package main
2
+
3
+import "fmt"
4
+
5
+func main() {
6
+ fmt.Println("hello world")
7
+}