-
Notifications
You must be signed in to change notification settings - Fork 230
New issue
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
Implement print builtin that does not insert a newline #2912
Labels
compiler
enhancement
New feature or request
good first issue
Good for newcomers
nargo
Noir's CLI development tool
Comments
vezenovm
added
enhancement
New feature or request
good first issue
Good for newcomers
compiler
nargo
Noir's CLI development tool
P-LOW
labels
Sep 29, 2023
Hello, my name is Jakub and I am a student of Technical University in Kosice and software developer in Siemens Healthineers and I would be very happy if I could work on this issue. It would be the part of the course where we have to help a project on GitHub. Could you assign me to it, please? |
5 tasks
github-merge-queue bot
pushed a commit
that referenced
this issue
Dec 5, 2023
# Description ## Problem\* Resolves **#3575 Resolves **#2912 (duplicate) Continuation of #3576 ## Summary\* Refactors `println_oracle` method into `print` with boolean indicator, allowing `print` to coexist with `println` under the same `ForeignCall` string symbol. Updates appropriate tests, and logging.md documentation. Add a subchapter to `03_string.md` documentation for the `fmtstr` type ## Additional Context ## Documentation\* Check one: - [ ] No documentation needed. - [x] Documentation included in this PR. - [ ] **[Exceptional Case]** Documentation to be submitted in a separate PR. # PR Checklist\* - [x] I have tested the changes locally. - [x] I have formatted the changes with [Prettier](https://prettier.io/) and/or `cargo fmt` on default settings. --------- Co-authored-by: jfecher <[email protected]>
@vezenovm This can be closed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
compiler
enhancement
New feature or request
good first issue
Good for newcomers
nargo
Noir's CLI development tool
Problem
We have a
println
builtin function in our standard lib but this restricts developers to have to print with a new line.Happy Case
Developers should be able to call a
print
function that gives the option to print without a newline. Our existingprintln
function can then be reimplemented where it calls this newprint
function.Alternatives Considered
N/A or else developers will not be able to have a normal print.
Additional Context
No response
Would you like to submit a PR for this Issue?
No
Support Needs
No response
The text was updated successfully, but these errors were encountered: