[GO] VScode에서 입력(Scan)을 위한 디버깅 세팅


[GO] VScode에서 입력(Scan)을 위한 디버깅 세팅

vscode에서 디버깅 할때 입력(fmt.Scanln)이 안되는 거였다... goland도 넘어가니 디버깅에서 입력도 잘되고....이제 라이센스도 얼마 남지 않아서 구글링 하다보면 vscode에서 디버깅으로 입력을 받아들일수 있지 않을까 해서 찾아서 나한테 맞게끔 약간의 수정이 필요했다... 디버깅과 관련된 파일 2개를 수정하면 된다... launch.json { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Connect to server", "type": "go", "request": "attach", ...


#golang #scan #vscode #디버깅

원문링크 : [GO] VScode에서 입력(Scan)을 위한 디버깅 세팅