run-note-pass.cpp 291 B

123456789101112
  1. // (C) Copyright Beman Dawes 2003.
  2. // See accompanying license for terms and conditions of use.
  3. #include <iostream>
  4. int main()
  5. {
  6. std::cout << "example of output before a <note> line\n";
  7. std::cout << "<note>\n";
  8. std::cout << "example of output after a <note> line\n";
  9. return 0;
  10. }
粤ICP备19079148号