Hello Devs! ????
I went through the initial understanding and now I need to start "writing" something, I'm going to configure my VSCode so that I can program and debug the generated code.
?Installation/Configuration Process
?Step 01 - Install the Go extension for VSCode
?? Open VSCode and install the Go Extension. To install extensions: "Ctrl Shift X", in the search field type Go and choose the option "Go - Go Team at Google". Just click on "Install"
?Step 02 - Update Go tools
?? Open VSCode and install the Go Extension. To install extensions: "Ctrl Shift P", in the field type "Go: Install/Update tools"
If something appears to update, select all available tools and select OK.
?Step 03 - Create a Hello
?? The idea is to create a simple example and make sure it works.
I created a folder and inside it a file called "main.go"
package main import "fmt" func main() { fmt.Println("Hello!") }
I was able to compile and run the generated file by running via terminal.
go build main.go
After the command, an executable was generated in the folder with the name "main.exe". Okay, my first program was generated.
?Step 04 - Debug my Code
?? Now I want to debug the code through VSCode.
Select the VSCode option to Debug: "Ctrl Shift D", then execute the "Run and Debug" button.
If it doesn't work, open the terminal and run the command
go install -v github.com/go-delve/delve/cmd/dlv@latest
I found another error here
Build Error: go build -o c:\_Dev\Go\Hello\__debug_bin676152768.exe -gcflags all=-N -l . go: go.mod file not found in current directory or any parent directory; see 'go help modules' (exit status 1)
It seems that after the Go 1.16 version, the default is that when running code, it is expected to have a "go.mod" file in the project.
To do this, simply run the command, where "hello" is the name of the project
go mod init hello
It created a file in the folder with the following content
module hello go 1.23.2
The 'go.mod' file is for dependency management in Go.
Now just run "Run and Debug" and watch the magic happen... ?
?Conclusion
Done, VSCode preparation complete!!!
Other options for writing your code
Here I will list some of them:
? LiteIDE X
? Jetbrains GoLand
? Sublime Text
References
? Install and configure Visual Studio Code for Go development
? Top 6 Golang IDEs for Go developers
? 6 Best Golang IDEs & Text Editors
See you next time! ?
☕? Now you can support by buying me a coffee
The above is the detailed content of Studying - Go Language - Day 02. For more information, please follow other related articles on the PHP Chinese website!

Go uses the "encoding/binary" package for binary encoding and decoding. 1) This package provides binary.Write and binary.Read functions for writing and reading data. 2) Pay attention to choosing the correct endian (such as BigEndian or LittleEndian). 3) Data alignment and error handling are also key to ensure the correctness and performance of the data.

The"bytes"packageinGooffersefficientfunctionsformanipulatingbyteslices.1)Usebytes.Joinforconcatenatingslices,2)bytes.Bufferforincrementalwriting,3)bytes.Indexorbytes.IndexByteforsearching,4)bytes.Readerforreadinginchunks,and5)bytes.SplitNor

Theencoding/binarypackageinGoiseffectiveforoptimizingbinaryoperationsduetoitssupportforendiannessandefficientdatahandling.Toenhanceperformance:1)Usebinary.NativeEndianfornativeendiannesstoavoidbyteswapping.2)BatchReadandWriteoperationstoreduceI/Oover

Go's bytes package is mainly used to efficiently process byte slices. 1) Using bytes.Buffer can efficiently perform string splicing to avoid unnecessary memory allocation. 2) The bytes.Equal function is used to quickly compare byte slices. 3) The bytes.Index, bytes.Split and bytes.ReplaceAll functions can be used to search and manipulate byte slices, but performance issues need to be paid attention to.

The byte package provides a variety of functions to efficiently process byte slices. 1) Use bytes.Contains to check the byte sequence. 2) Use bytes.Split to split byte slices. 3) Replace the byte sequence bytes.Replace. 4) Use bytes.Join to connect multiple byte slices. 5) Use bytes.Buffer to build data. 6) Combined bytes.Map for error processing and data verification.

Go's encoding/binary package is a tool for processing binary data. 1) It supports small-endian and large-endian endian byte order and can be used in network protocols and file formats. 2) The encoding and decoding of complex structures can be handled through Read and Write functions. 3) Pay attention to the consistency of byte order and data type when using it, especially when data is transmitted between different systems. This package is suitable for efficient processing of binary data, but requires careful management of byte slices and lengths.

The"bytes"packageinGoisessentialbecauseitoffersefficientoperationsonbyteslices,crucialforbinarydatahandling,textprocessing,andnetworkcommunications.Byteslicesaremutable,allowingforperformance-enhancingin-placemodifications,makingthispackage

Go'sstringspackageincludesessentialfunctionslikeContains,TrimSpace,Split,andReplaceAll.1)Containsefficientlychecksforsubstrings.2)TrimSpaceremoveswhitespacetoensuredataintegrity.3)SplitparsesstructuredtextlikeCSV.4)ReplaceAlltransformstextaccordingto


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 English version
Recommended: Win version, supports code prompts!

Atom editor mac version download
The most popular open source editor
