mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 22:34:56 +00:00
11 lines
265 B
C++
11 lines
265 B
C++
#include <iostream>
|
|
|
|
int main() {
|
|
std::cout << "Stream Cast CLI" << std::endl;
|
|
std::cout << "Run of show:" << std::endl;
|
|
std::cout << "00:00 Intro" << std::endl;
|
|
std::cout << "00:10 Main" << std::endl;
|
|
std::cout << "00:30 Q&A" << std::endl;
|
|
return 0;
|
|
}
|