Forgot your password?
typodupeerror
AI Programming

What Go Programmers Think of AI (go.dev) 55

"Most Go developers are now using AI-powered development tools when seeking information (e.g., learning how to use a module) or toiling (e.g., writing repetitive blocks of similar code)." That's one of the conclusions Google's Go team drew from September's big survey of 5,379 Go developers.

But the survey also found that among Go developers using AI-powered tools, "their satisfaction with these tools is middling due, in part, to quality concerns." Our survey suggests bifurcated adoption — while a majority of respondents (53%) said they use such tools daily, there is also a large group (29%) who do not use these at all, or only used them a few times during the past month. We expected this to negatively correlate with age or development experience, but were unable to find strong evidence supporting this theory except for very new developers: respondents with less than one year of professional development experience (not specific to Go) did report more AI use than every other cohort, but this group only represented 2% of survey respondents. At this time, agentic use of AI-powered tools appears nascent among Go developers, with only 17% of respondents saying this is their primary way of using such tools, though a larger group (40%) are occasionally trying agentic modes of operation...

We also asked about overall satisfaction with AI-powered development tools. A majority (55%) reported being satisfied, but this was heavily weighted towards the "Somewhat satisfied" category (42%) vs. the "Very satisfied" group (13%)... [D]eveloper sentiment towards them remains much softer than towards more established tooling (among Go developers, at least). What is driving this lower rate of satisfaction? In a word: quality. We asked respondents to tell us something good they've accomplished with these tools, as well as something that didn't work out well. A majority said that creating non-functional code was their primary problem with AI developer tools (53%), with 30% lamenting that even working code was of poor quality.

The most frequently cited benefits, conversely, were generating unit tests, writing boilerplate code, enhanced autocompletion, refactoring, and documentation generation. These appear to be cases where code quality is perceived as less critical, tipping the balance in favor of letting AI take the first pass at a task. That said, respondents also told us the AI-generated code in these successful cases still required careful review (and often, corrections), as it can be buggy, insecure, or lack context... [One developer said reviewing AI-generated code was so mentally taxing that it "kills the productivity potential".]

Of all the tasks we asked about, "Writing code" was the most bifurcated, with 66% of respondents already or hoping to soon use AI for this, while 1/4 of respondents didn't want AI involved at all. Open-ended responses suggest developers primarily use this for toilsome, repetitive code, and continue to have concerns about the quality of AI-generated code.

Most respondents also said they "are not currently building AI-powered features into the Go software they work on (78%)," the surveyors report, "with 2/3 reporting that their software does not use AI functionality at all (66%)." This appears to be a decrease in production-related AI usage year-over-year; in 2024, 59% of respondents were not involved in AI feature work, while 39% indicated some level of involvement. That marks a shift of 14 points away from building AI-powered systems among survey respondents, and may reflect some natural pullback from the early hype around AI-powered applications: it's plausible that lots of folks tried to see what they could do with this technology during its initial rollout, with some proportion deciding against further exploration (at least at this time).

Among respondents who are building AI- or LLM-powered functionality, the most common use case was to create summaries of existing content (45%). Overall, however, there was little difference between most uses, with between 28% — 33% of respondents adding AI functionality to support classification, generation, solution identification, chatbots, and software development.

This discussion has been archived. No new comments can be posted.

What Go Programmers Think of AI

Comments Filter:
  • I have spent the last 2 weeks really getting into CoPilot for helping write code, (python specifically). I am very fluent in Python, and have been for awhile. I give a shit about architecture, clean/simple code, data types, and can pass my stuff through mypy and it passes.

    I started two greenfield projects - one for embedded development and one for math modeling using numpy and python, (C was a long time ago for me, and I am not deeply familiar with numpy, but I have knowledge of calculus and advanced
    • by gweihir ( 88907 )

      I hope you do not plan to give that code any publicly available interfaces. Because LLMs are absolute crap at writing secure code. Probably because most people that proudly put their code on the net as "examples" are too.

      • I hope you do not plan to give that code any publicly available interfaces. Because LLMs are absolute crap at writing secure code. Probably because most people that proudly put their code on the net as "examples" are too.

        If I was going to give a public interface to anything, it's going to go through the same process that I have been using for a number of years now - a templated design that has been tested/pentested/tested again for holes. And these days, it will likely be behind an AWS api gateway as well if we're talking about internet-facing apis. It won't be some EC2 instance with a public ip and a sec group of 80 -> 0.0.0.0/0.

        I should have added in my original post that I feel AI tools can be very useful in th

        • by gweihir ( 88907 )

          I see you are being careful. Good. Careful and competent people can be trusted with any tool.

          I had a student look at how well LLMs do with security (including several paid ones up to around the $100 tier) and the results for anything that matters (security-patch level or CVE level) are pretty bad. If code is well isolated, that matters not that much, unless it is something high profile with a lot of visibility.

          That unmaintainable app will provide an interesting lesson. Fixing complex code is typically more

      • by HiThere ( 15173 )

        Most published examples don't handle exception processing, either. But that's something that's easy to add. (OTOH, it can be really tedious. It's really something that AI *should* handle.)
        (FWIW, I haven't used any code generator, so I don't know what Claude turns out, maybe it does handle exception. But the published examples sure don't.)

        • by gweihir ( 88907 )

          Hmm. IMO exception design is one place where architecture matters and what you want to do overall matters. LLMs cannot do either.

    • by rot16 ( 4603585 )

      This reflects my experience as well. It really lowers the bar of entry for much of technical work. It suits well when the cost of trying it out is nothing.
      It can help learning a lot if it does not replace thinking. It can be an extremely kind and patient tutor, useful even if it is sometimes wrong.

    • But I also started with a basic architecture diagram of what I wanted, and that is also a big factor.

      Do you recommend using UML to diagram your architecture, or is it basic enough that SGML worked fine?

    • I've been using Gemini alongside a Vue web app. By preference I'm a backend sort of guy, but I've quite enjoyed working with Vue. I really dislike some aspects of Javascript, HTML and CSS, but there Gemini (usually) saves me quite well. It comes up with some useful chunks of code, which I accept maybe half the time. Sometimes that saves me one line of code, sometimes it saves maybe 10.

      I would stress that in my view, however the code was generated, it's still my responsibility. As such, I do spend a lot of t

    • by gweihir ( 88907 )

      To be fair, there are tons of fools around. The very AI hype currently going shows that nicely. Or the 8 or so previous, equally mindless AI hypes. Although they were smaller and did not have a global economic crash at their end.

  • by gweihir ( 88907 ) on Sunday February 01, 2026 @10:40PM (#65963464)

    What a great win for AI! Go info would be just as fast to look up directly (but no hallucination), and cut & paste needs care anyways. Better write a function.

    Sounds like an entirely redundant use that will fall into "slightly faster .... slightly slower" and in no way even remotely justifies the effort that goes into LLMs. Or the risks, because that AI generated code may well not have copyright, may leak and may have hallucinations in it. Or, worse, attack code from model poisoning. And the module info might have hallucinations too, see "slop-squatting attacks".

  • toiling (e.g., writing repetitive blocks of similar code)

    If you're continuously "toiling", e.g. writing repetitive blocks of similar code, you're very likely doing it wrong.

    But then you're the type of coder that will need to use "AI".

    • If you're continuously "toiling", e.g. writing repetitive blocks of similar code, you're very likely doing it wrong.

      This is pretty much the origin story of go, replacing expressiveness with limited builtin types, no generics and endless toil.

      • Never had the need or the curiosity to look at it, but if this is the case, then I can pity those who must use it.

      • by HiThere ( 15173 )

        That's not a fair description. There are areas where go is a superior choice. Channels are very useful, and could save an immense amount of effort. OTOH, the documentation really NEEDS an AI front end. And there's no decent way to generate local documentation (i.e. documentation for your code that doesn't require setting up a local server).

        So I've always avoided it for anything that needed much documentation (i.e. most things). (FWIW, I don 't like Doxygen, but it's the best documentation system I've

        • That's not a fair description. There are areas where go is a superior choice.

          Well, yeah I was being a bit of a dick. It's got a builtin set of types that are a good match to a certain type of web service. If you're working within that domain (which is not small), yeah it's a good fit.

          Bit it's really manual for anything else.

  • I don't trust the parties providing 3rd party AI services with my IP, data or commercial secrets. It's in the AI companies interest to rob my data to improve their product.

    And I certainly don't trust them to manage integration with stuff behind my firewall or my money.

    So no AI will not own my code base because I don't want it to. It's a security risk.

    If you are interested in this technology, I suggest find a way for companies to easily grow and integrate LLM behind their firewall, independently, without hav

  • correlates positively with intelligence, for reasons entirely internal to the issue at hand, which is simulating intelligence.
  • I've been coding since the 1980s, full-time since the mid 90s. Anyone NOT using some degree of AI at this point is really a luddite in that regard.

    Not using at least some AI is along the lines of saying that IDEs make bad programmers, or inline auto-complete makes for bad programmers, etc. There has to be some kind of underlying dogma to not be using it at all at this point.

    And this comes from someone whose code was originally stored on cassette tapes, and was thrilled to death having two floppy drives on m

  • Go was designed by Google, which has also AI holdings. So why ever ask them?
    https://en.wikipedia.org/wiki/... [wikipedia.org] "Go was designed at Google in 2007 to improve programming productivity in an era of multicore, networked machines and large codebases.[23] The designers wanted to address criticisms of other languages in use at Google, but keep their useful characteristics:[24]"

The best things in life go on sale sooner or later.

Working...