How to Set Up Go Development in Visual Studio Code on Windows 11 | VSCode Golang Development Basics

Поделиться
HTML-код
  • Опубликовано: 27 ноя 2024

Комментарии • 19

  • @jpousadas
    @jpousadas Месяц назад

    Well, you are amazing, I learned more than during the VStudio+Go training, I have already managed to work with the example clearly but 100%, continue helping us who are still at the beginning of the training. Very good!

  • @math1560
    @math1560 3 месяца назад +2

    Thanks! You've helped me a lot. I've been thinking how to fix the error in VSC for a couple of hours and my mistake was that I forgot to write the name of the mod file after the 'init' command, but I had been on the right way :)

  • @ashwin_anand
    @ashwin_anand 4 дня назад

    well new to go lang so this really helped how to do the right way.

  • @vinaykumarmasane455
    @vinaykumarmasane455 Месяц назад

    Simple yet Very Well organized Getting Started Guide to begin Golang Setup.... Thank You

  • @Afdz-c1c
    @Afdz-c1c 3 месяца назад +2

    For those unable to run,Just install Code Runner Extension.

  • @Devplorer
    @Devplorer 2 месяца назад

    thankx a lot buddy 🤩

  • @mallukittens177
    @mallukittens177 10 месяцев назад

    What is the need for running binary ? What exactly do u mean by that ? Pls reply.

    • @tef1on
      @tef1on 4 месяца назад

      The ultimate goal of writing a program is to create an executable file that other users can run without VS Code and Golang. That 's what it is .the exe file. In this case hello.exe . go run only runs the program in the development environment. go build creates an independent executable file.

  • @shreenidhiadiga
    @shreenidhiadiga Год назад

    How to set up c# and .NET compiler on VS Code

  • @soujanyanagarajan
    @soujanyanagarajan 8 месяцев назад +2

    I didnt get that command

  • @Lez_goo
    @Lez_goo 2 месяца назад

    11:25

  • @mallukittens177
    @mallukittens177 10 месяцев назад

    Pls reply bro😢

  • @mallukittens177
    @mallukittens177 10 месяцев назад

    What is the need for running binary ? What exactly do u mean by that ? Pls reply.

    • @UmmarFarooqMahroof
      @UmmarFarooqMahroof 10 месяцев назад +1

      he means it creates a .exe file which you can run like any other windows program, without launching vscode or anything. you can copy the exe file and take to any other windows computer and run and will run just by double clicking or running via command line. the exe does not need to have vscode or go installed because it is compiled into machine code