note_tacgoalStack.note_tac : string -> tactic
Prints a message; does not change the goal.
The tactic note_tac s prints the string s
followed by a newline (using the standard SML print
function). The effect on the goal is as if the tactic
ALL_TAC had been applied (i.e., the state of the goal is
not changed).
Never fails.
This is useful for tracking progress through a proof by printing
messages at various stages. Unlike print_tac, this function
only prints the provided message without printing the goal state.
goalStack.print_tac, Tactical.ALL_TAC.