Skip to content
Open
Show file tree
Hide file tree
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
11 changes: 1 addition & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
# SuperCoolProject

Hello! Glad to see my homework repo is still being used. Maybe check out some of the other garbage I have kicking around on here?

Pro tips for getting an A in Dr.Cerny's class.

1. Study those 200 slide powerpoints like the bible
2. When studying go for understanding the content, not memorizing
3. Master git and design patterns.
4. You dont realize it now, but java streams are king.

Do me a favor, if everyone here can tell Professor Fry congradulations on retirement, im sure she would be very greatful.
MY REPO NOW!
20 changes: 20 additions & 0 deletions main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
//Author: Jonah Beck
//Assignment Title: Hello World
//Assignment Description: Prints "Hola Mundo :-)"
//Due Date: 8/23
//Date Created: 8/22
//Date Last Modified: 8/22

#include <iostream>
using namespace std;
int main(){

cout << "Hola Mundo. :-)";

return 0;
}

//Data Abstraction:
//Input:
//Process:
//Output: "Hola Mundo. :-)"