(Doc section: Main)
| 129 | |
| 130 | // (Doc section: Main) |
| 131 | int main() { |
| 132 | arrow::Status st = RunMain(); |
| 133 | if (!st.ok()) { |
| 134 | std::cerr << st << std::endl; |
| 135 | return 1; |
| 136 | } |
| 137 | return 0; |
| 138 | } |
| 139 | // (Doc section: Main) |
| 140 | |
| 141 | // (Doc section: Compute Example) |