why can't save these line of code in vscode with golang extension
package app
import (
"fmt"
)
//this is just func
func TestingHello(){
fmt.Println("Hissssss")
}
only the package app
stays and remaining part got deleted on save in vscode.
why can't save these line of code in vscode with golang extension
package app
import (
"fmt"
)
//this is just func
func TestingHello(){
fmt.Println("Hissssss")
}
only the package app
stays and remaining part got deleted on save in vscode.