Wonderful. A C++ dev over here of 8 years, started learning Go, and the more i learn the more i love it. Thanks for tutorial!
@nitin00013 жыл бұрын
Thanks for starting this series, I have been waiting for this
@MarcusBryan19907 ай бұрын
Your channel is the reason I now own a house.
@NetNinja7 ай бұрын
Haha, thanks Marcus! :)
@prophetjamz943 жыл бұрын
I needed this series
@MaxProgramming3 жыл бұрын
Thank you so much Shaun! Will you also make a series on REST API in Go? Edit: Did you notice how quick VS Code showed the errors while working with Go compared to JS
@NetNinja3 жыл бұрын
Hey, yeah I will be doing more on Go in the future - probably a series on testing & one on creating an API :)
@MaxProgramming3 жыл бұрын
@@NetNinja Thank youuu 🤩
@noaexel3 жыл бұрын
@@NetNinja what is the recommended framework for development in Golang,
@TahirBhai3 жыл бұрын
@@noaexel yeah also looking for the reply
@void_star_void3 жыл бұрын
what about string interpolation like in js ? ` some string ${someVar} `
@0xPanda13 жыл бұрын
thank you Shaun
@void_star_void3 жыл бұрын
Keep'em comin mate 😍
@noaexel3 жыл бұрын
Thank you for this shaun, however i have 2 questions, 1. I noticed you don't end your statements with a semicolon, is it not required? 2. I also noticed that when you run your main file to demo your examples, its takes some time to output on the console, why is that? Thank you...
@TahirBhai3 жыл бұрын
Yeah I noticed it too, thnx for comment
@shr1han3 жыл бұрын
1. It's kind of like Python. If you've used it, you should know that there's no semicolons. But, if you write multiple statements in a single line, you need to write first statement, semicolon, then another... 2. It takes time because it needs to compile everything and then run the program.
@sreekar_s3 жыл бұрын
Does vscode provide intellisense?
@MaxProgramming3 жыл бұрын
Installing the Go extension for that is useful
@LoveisHell853 жыл бұрын
Great series. I would love to see React/Node/PostgresSQL fullstack project in the future. Thank you
@gyenabubakar3 жыл бұрын
You mentioned that you'll leave a link to the format specifiers but I'm not seeing it in the description.
@laragram3 жыл бұрын
Here: golang.org/pkg/fmt/
@nanaarhin5567 Жыл бұрын
How are you able to switch between the terminal and the console. I am new to this program and the software as well and I it makes the learning a bit slow if I have to keep clicking between the terminal and where I am writing my code. Please help
@themannyzaur8 ай бұрын
learn your editor and its shortcuts for faster productivity in this case it's Ctrl + ` ` is found above the Tab key
@kovendanragupathi76323 жыл бұрын
@The Net Ninja,Can you please consider uploading full series of styled components for React
@SiddharthRay13 жыл бұрын
thanks Shaun!
@dlysele3 жыл бұрын
In the formated string, when I did fmt.Printf("my age is %v and my name is %v", age, name), at the terminal, there would be a % at the end of the sentence, do you know what that is?
@sreenirnair Жыл бұрын
That is actually the command prompt for the next line. When you use Printf, unless you terminate the string with a character, the print stops in the middle of the line and the command prompt shows up in the middle of the line as % (if you are using zsh). To avoid this, add a , like fmt.Printf("My age is %v ", age) etc. PS: Println automatically adds a new line, but Printf behaves differently.
@soumadip_banerjee3 жыл бұрын
Thank you Mr.Pelling!
@apoorvsinha4136Ай бұрын
I was looking at a Indian tutorial by Hitesh which has millions of views but turns out bigger number of views doesn't always mean better information. Switching to this series.
@NetNinjaАй бұрын
Awesome, hope it's helpful :)
@oglothenerd9 ай бұрын
You should have explained why %q was changing the number to a character. (Essentially, 35 is the ASCII code for '#'.)
@breawen7 ай бұрын
yeah, at first i though it outputs '#' because it was an int. glad i tried it with a different number, making me realize what it actually does.
@oglothenerd7 ай бұрын
@@breawen :D
@ch0wderz9122 жыл бұрын
What jobs requires Golang?? lol I need a job so I don't look like a dissapointment, anyways coding is fun! Is Golang a necessary language for Cybersecurity??
@manh9105 Жыл бұрын
Go seems to have been heavily inspired by C
@ginnerzapata5909 Жыл бұрын
it was made by the creator of B (the predecessor of C)
@splytrz Жыл бұрын
when a language doesn't have string inerpolation in 2023... :/
@sahilchanglani88863 жыл бұрын
what's the difference between using sprintf to assign a variable and assigning string directly to the variable?
@krzysztofrapior85973 жыл бұрын
Most likely it's just a design. Compiler (if it's smart) should do the same job in the end.