Max Taldykin

Results 6 comments of Max Taldykin

``` ! exec cue cmd -t who=me -t who=me hello cmp stderr stderr.golden -- hello_tool.cue -- package hello import "tool/exec" who: string @tag(who) command: hello: { print2: exec.Run & {...

`--all-errors` is defined as a persistent/global flag defined on "root" command. This means that it may be used on `cue` and on any of its subcommands including `cue cmd greeting`....

Actually, I came here because of some other inconsistencies in the help messages. $ cue help cmd Usage: cue cmd [inputs] [flags] cue cmd [command] Available Commands: hello Say hello!...

The same problem occurs with `new`: ```TypeScript let obj = new F(); ``` is translated to ```python obj = F() ```

This repo uses [Git submodules](https://git-scm.com/book/en/v2/Git-Tools-Submodules). I.e. it references another repository at the specific commit. You can run `git submodule update --init --recursive` after cloning the repo and it will automatically...

You can explicitly put quotes around case sensitive names: ```kotlin object MyTable : Table("\"MyTable\"") { val someField = text("\"someField\"") } ``` Generated queries preserve those quotes: ```sql INSERT INTO "MyTable"...