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
echo "ok0" echo 0xffffffffffffffff runnableExamples: echo "ok1" echo 0xffffffffffffffff
nim doc main ok0 -1 ok1 4294967295
ok0 -1 ok1 -1
echo "ok1" echo 0xFFFFFFFF
do: => :
(expr) => expr
The text was updated successfully, but these errors were encountered:
fix #13491 #17279 runnableExamples now don't get lost in translation (#…
d161d27
…17282) * fix #13491 runnableExamples rendering * fix a runnableExamples thanks to this bugfix
fix nim-lang#13491 nim-lang#17279 runnableExamples now don't get lost…
9ea401d
… in translation (nim-lang#17282) * fix nim-lang#13491 runnableExamples rendering * fix a runnableExamples thanks to this bugfix
eaf0ea9
Successfully merging a pull request may close this issue.
Example
Current Output
nim doc main
ok0
-1
ok1
4294967295
Expected Output
ok0
-1
ok1
-1
Additional Information
/Users/timothee/git_clone/nim/timn/build/nimcache/runnableExamples/t11969_examples1.nim
do: => :
and(expr) => expr
, producing invalid code #13491The text was updated successfully, but these errors were encountered: