Isn't that true of any language with even the simplest mechanism for abstraction?
How about this go code?
doStuff(1, 2)
An example in golang would be something like:
type foo struct { a string b int c *someOtherStruct } var blah = foo{"example", 42, nil} blah.b = someMagicVariable
Isn't that true of any language with even the simplest mechanism for abstraction?
How about this go code?
It could "update some rows in a database, write a file, or make an HTTP request."