Lecture 1 Next Lecture

Lecture 1, Tue 06/26

Introduction, CSIL Policies, Course Structure

Course Syllabus

Be sure to read the course syllabus for information on the logistics of this course.

https://ucsb-cs16-m18.github.io/info/syllabus/

CSIL Policies

Be sure to review the CSIL policies. Slides are attached in the following Piazza post:

https://piazza.com/class/jiqcwxay7mkdo?cid=6

High-level Overview of a Computer System

vim Editor

Hello World Program

// hello.cpp
#include <iostream>

using namespace std;

int main() {
	cout << "Hello CS 16!" << endl;
	return 0;
}
$ g++ -o hello hello.cpp
$ ./hello
Hello CS 16!
$