Message function
Namespace: Microsoft.Quantum.Intrinsic
Package: Microsoft.Quantum.QSharp.Foundation
Logs a message.
function Message (msg : String) : Unit
Input
msg : String
The message to be reported.
Output : Unit
Example
The following causes "Hello, world!"
to be reported (typically to
the console):
let name = "world";
Message($"Hello, {name}!");
Remarks
The specific behavior of this function is simulator-dependent, but in most cases the given message will be written to the console.
Feedback
Submit and view feedback for