CS 145 Lecture 1 – Introduction
September 3, 2014 by Chris Johnson. Filed under cs145, fall 2014, lectures.
Agenda
- bios
- awards
- what is computer science?
- meta
- grammar
- ignition
- computer as calculator
- haiku
Bio
- What’s your name?
- Where are you from?
- What’s the last unassigned book you read?
- If not computers, what? (Outlawed answers: reinvent them.)
TODO
Code
FirstExample.java
package lecture0903;
public class FirstExample {
public static void main(String[] args) {
System.out.println("Salutations");
}
}
Haiku
on society’s relationship with math:
Computers are gloves
Our gloves for touching numbers
Else we’ll get thirty
show