added blog post

This commit is contained in:
Wyatt Miller 2019-02-13 16:36:52 -05:00
parent 75c1eb9d76
commit cacedc6462
4 changed files with 88 additions and 1 deletions

View File

@ -0,0 +1,66 @@
---
layout: post
title: "Trying out Golang (or Go, whatever you'd like to call it)"
published: true
---
Golang (or Go, that are interchangeable and I will use it as such) has blown up over the recent years. For example, some features piqued my interest and when say piqued, I mean it. You probably aren't as hyped about Golang as I am. I suppose it helps when you are such a nerd about back-end and server development as well.
Right! Features (a few maybe?):<br>
* Concurrent<br>
* [Super-duper fast](https://stackshare.io/stackups/c-sharp-vs-go-vs-rust) when compared to Rust and C#.<br>
* Compilation support (super useful for sysadmins using GOOS, I found a [cool video](https://www.youtube.com/watch?v=hsgkdMrEJPs) about this, watched it to it's entirity)<br>
* Package management (Helpful for devs who use git and use platforms such as GitHub and GitLab)<br>
* Interpreter is long gone as Go is compiled (No longer are we in the days of Python and Ruby interpreters)<br>
* Static typing, for fans of that (C++, C#, Java, and Rust devs will know what I am talking about)<br>
* Managed version control repositories (also useful for devs using git)<br>
* Powerful standard library (flex, Golang, flex!)
Are you interested yet? I know I am!
What makes a Go program, you might ask? Hold up a sec:
<code>
package main<br>
import(<br>
&nbsp;"fmt"<br>
&nbsp;"os"<br>
)<br>
var name string = os.Args[1]<br>
func main(){<br>
&nbsp;fmt.Println("Hello,", name)<br>
}<br>
</code>
Link to source [here.](https://wyattjmiller/blog/src/main.go)
I'm back! A lot to take in, isn't there? I'm a beginner too so I will try my best to explain this to my utmost competency.
So the the `package main` deal up top. You will need that to package that up if you want to share this awesome hello world app with your friends.
The `import` keyword imports packages to help with Go development. So, in this case, I'm importing the formatting tool, `"fmt"`, and the operating system tool, `"os"`, into my awesome hello world app which both packages are in the standard library. With that said, you could import other third party packages, like the ssh package. Since you can't find it [here](https://golang.org/pkg/), I looked on Golang's third party packages for ssh packages and it was pretty obvious that I'd find one. You'd just import:<br>
<code>
import(<br>
&nbsp;"golang.org/x/crypto/ssh"<br>
)
</code>
I think that's pretty neat as you have flexible package management built right in to Go.
Next up, variables! Variables are a bit different as you have to declare them with a `var` and then the name of the variable and then the type of the variable. In my case, I need a variable called `name` with the `string` type because I know it's going to be `string` to begin with. Since Go is statically typed, this kind of breaks the rules (kind of like C# with the `var` keyword) but Go is super smart and can infer the type for you by using the `:=` operator. An example might help:<br>
`name := os.Args[1]`<br>
Depending on what the argument is when the hello world app runs, it will infer the type for you.
The `func` keyword creates a function! I named my function `main` because that's the default function that is ran if nothing is written in that has a different function running in the first place (in fact, I don't how that is written in so don't ask me).
Inside the function, I used the `"fmt"` package to print a line that says "Hello" then your name you put in at the command line. If you don't insert a name before you run the `go run` command, you'll get an error that the index is out of range. One downside to Go is it doesn't have exceptions but does the `panic` facility, which you run into that, it's game over.
Go has flow control too, which is pretty cool but I haven't messed with a whole lot yet.
Check Go out, I think you guys will really enjoy it as I am. Next, I might playing with some of [this](https://github.com/zmb3/spotify).

View File

@ -3,7 +3,7 @@ layout: page
title: About the blog title: About the blog
permalink: /about/ permalink: /about/
--- ---
This is a blog about computing and programming written by Wyatt J. Miller. Here, Wyatt writes his opinion about tech news, programming practices, and other This is a (somewhat) weekly blog about computing and programming written by Wyatt J. Miller. Here, Wyatt writes his opinion about tech news, programming practices, and other
opinions. opinions.
This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/) This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/)

View File

@ -4,3 +4,6 @@
layout: home layout: home
--- ---
What's happening, my fellow developers?
Want to go [back to the site?](https://wyattjmiller.com)

18
src/blog/src/main.go Normal file
View File

@ -0,0 +1,18 @@
package main
import (
"fmt"
"os"
)
var name string = os.Args[1]
func main(){
result, err := fmt.Println("Hello,", name)
if err != nil {
panic(err)
} else {
fmt.Println(result)
}
}