Skip to content

fix menu #57

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -258,23 +258,23 @@ int main() {
#endif

// Common introduction message
displayMessage("**********************************************************************************************\n"
"* *\n"
"* C Interpreter *\n"
"* *\n"
"* A Project By Blake Marshall, Brandon Robinson, Holden Ea, Jacob Sellers, & Rolando Yax. *\n"
"* Completed To Satisfy The Final Project of CS460 At Sonoma State University In Fall 2024. *\n"
"* *\n"
"* *\n"
"* This Program Acts As An Interpreter For The C Language And Was Built Over The Course Of *\n"
"* Six Stages. Each Of These Components Are Testable And Can Be Selected Individially From *\n"
"* The Following Page. *\n"
"* *\n"
"* *\n"
"* Great things are done by a series of small things brought together. *\n"
"* -Vincent van Gogh *\n"
"* *\n"
"**********************************************************************************************\n"
displayMessage("***********************************************************************************************\n"
"* *\n"
"* BNF Interpreter *\n"
"* *\n"
"* A Project By Blake Marshall, Brandon Robinson, Holden Ea, Jacob Sellers, & Rolando Yax. *\n"
"* Completed To Satisfy The Final Project of CS460 At Sonoma State University In Fall 2024. *\n"
"* *\n"
"* *\n"
"* This Program Acts As An Interpreter For Code In Backus-Naur Form (BNF) And Was Built *\n"
"* Over Six Stages. Each Of These Components Are Testable And Can Be Selected Individially *\n"
"* From The Following Page. *\n"
"* *\n"
"* *\n"
"* Great things are done by a series of small things brought together. *\n"
"* -Vincent van Gogh *\n"
"* *\n"
"***********************************************************************************************\n"
"\nPress any key to continue. . .");

waitForInput(); // Wait for user input
Expand Down
Loading