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

แชร์
ฝัง
  • เผยแพร่เมื่อ 19 ม.ค. 2025

ความคิดเห็น • 22

  • @jpousadas
    @jpousadas 3 หลายเดือนก่อน +1

    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!

  • @Salah-YT
    @Salah-YT หลายเดือนก่อน +1

    thank u ever so much for ur amazing video

  • @math1560
    @math1560 5 หลายเดือนก่อน +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 :)

  • @vinaykumarmasane455
    @vinaykumarmasane455 3 หลายเดือนก่อน

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

  • @ashwin_anand
    @ashwin_anand หลายเดือนก่อน

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

  • @Afdz-c1c
    @Afdz-c1c 5 หลายเดือนก่อน +4

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

  • @capra121
    @capra121 25 วันที่ผ่านมา

    means a lot sir

  • @Devplorer
    @Devplorer 4 หลายเดือนก่อน

    thankx a lot buddy 🤩

  • @ayushratan6452
    @ayushratan6452 26 วันที่ผ่านมา

    why does it run slow however, I mean when I write go run main.go, it is taking me around 6-7 seconds before the output is displayed.

  • @mallukittens177
    @mallukittens177 ปีที่แล้ว

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

    • @tef1on
      @tef1on 6 หลายเดือนก่อน

      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 9 หลายเดือนก่อน +2

    I didnt get that command

  • @Lez_goo
    @Lez_goo 4 หลายเดือนก่อน

    11:25

  • @mallukittens177
    @mallukittens177 ปีที่แล้ว

    Pls reply bro😢

  • @mallukittens177
    @mallukittens177 ปีที่แล้ว

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

    • @UmmarFarooqMahroof
      @UmmarFarooqMahroof ปีที่แล้ว +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