-
-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
335d9ee
commit 50ff803
Showing
3 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[ | ||
{ | ||
"categoryName": "Basics", | ||
"snippets": [ | ||
{ | ||
"title": "Hello, World!", | ||
"description": "A simple function that outputs \"Hello, World!\"", | ||
"author": "AmeerMoustafa", | ||
"tags": [ | ||
"golang", | ||
"basics", | ||
"formatting" | ||
], | ||
"contributors": [], | ||
"code": "package main // A package in Go is how Golang knows which files are related\n\nimport \"fmt\" // Imports the fmt package, commonly used for printing\n\nfunc main() { // the main function in Go acts as the entry point to our program\n\n fmt.Println(\"Hello, World!\") // Calling the Println function from the fmt package \n}\n" | ||
} | ||
] | ||
} | ||
] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.