Lab 1
Objectives:
Understand lab policies
Learn basics of UNIX/Linux, vim, and subversion
Create, debug, run and submit a simple C++ program:
1. Study basics of operating system UNIX/LINUX and the editor vim
2. Create a source file titled firstProgram.cpp in vim.
3. Enter the following code in the source file://prints your pseudonym
//your name
//today's date
#include <iostream>
using namespace std;
int main() {
cout << "HELLO,PSEUDONYM" << endl;
}
Specifiy appropriate name and date. Your grades are going to be listed under your pseudonym toghether with the rest of the students. This way you will always be able to see how you are doing in class but will not be able to recognize other students. Select an arbitrary one-word pseudonym and put it in the program. If you do not wish to have your grade listed in this manner, leave the word PSEUDONYM intact or state NO PSEUDONYM.
4. Compile,debug, and run your program.
5. Study subversion instructions as presented in the lab.
6. Submit your program and verify your submission.