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
api.Println
api.Printf
To be precise, I think you can add a func like api.Printf("this is my var %fv. ", circuit.x), and hope it have the same performance with fmt.Printf()
func (circuit *Circuit) Define(api frontend.API) error{ api.Printf("this is my var %fv. ", circuit.x) } go cmd output: this is my var 2
The text was updated successfully, but these errors were encountered:
It could be useful - I think we could have different formatting options:
Sorry, something went wrong.
@ivokub In addition to api.Println(), it's possible to provide a new API api.Fmt() that feeds the printing content to a string?
api.Println()
api.Fmt()
It is possible, but we currently don't have it on the roadmap. I think it could be a suitable task for external contribution though.
No branches or pull requests
To be precise, I think you can add a func like api.Printf("this is my var %fv. ", circuit.x), and hope it have the same performance with fmt.Printf()
The text was updated successfully, but these errors were encountered: