Skip to content
Open
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
10 changes: 7 additions & 3 deletions CommitCafe.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
public class CommitCafe {
public static void main(String[] args) {
String barista = "nvf";
int cups = 23;
int cups = 16;

System.out.println("nvf brewed 23 cups today.");
System.out.println("Keep calm and merge the mocha.");
// Added by Zhuoyan Cen for in-class merge exercise
System.out.println(barista + " brewed " + cups + " cups today_zhc.");
System.out.println("Commit your coffee, not your code before it compiles.");
}
}

// Branch for Zhuoyan