Edinburgh Speech Tools  2.1-release
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
program_example.cc
1 
2 #include <cstdio>
3 
4 /** @example program_example
5  * @author Write-Your-Name
6  * @code
7  *
8  * This example shows how examples work
9  */
10 
11 int main() {
12  /// Start with main
13  std::cout << "hello example" << std::endl;
14  /// Set a return value
15  return 0;
16 }
17 
18 /// @endcode