We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Originally opened by @ghchinoy in cuelang/cue#50
Using types.cue from https://github.com/cuelang/cue/blob/master/doc/tutorial/basics/types.md errors on running cue eval.
types.cue
cue eval
$ cue eval -i types.cue --- . unsupported op &((float)*, int): ./types.cue:2:8 ./types.cue:7:10 // /home/ghchinoy/dev/cueexperments { point: { x: float y: float } xaxis: { x: _|_ // unsupported op &((float)*, int) y: float } yaxis: { x: float y: _|_ // unsupported op &((float)*, int) } origin: { x: _|_ // unsupported op &((float)*, int) y: _|_ // unsupported op &((float)*, int) } }```
The text was updated successfully, but these errors were encountered:
Original reply by @mpvl in cuelang/cue#50 (comment)
Ah, there was a recent change to make integer literals not floats. I’ll update the example to use number, the now recommended type to use.
I’m close to finishing some tests for the tutorials to allow catching these kind of things during development.
Sorry, something went wrong.
Original reply by @ghchinoy in cuelang/cue#50 (comment)
Thanks @mpvl - please let me know if there's anything I can do to help!
No branches or pull requests
Originally opened by @ghchinoy in cuelang/cue#50
Using
types.cue
from https://github.com/cuelang/cue/blob/master/doc/tutorial/basics/types.md errors on runningcue eval
.The text was updated successfully, but these errors were encountered: