Jed Rembold
Thursday, January 6, 2021
We will use a theorem
\[\sum_i^{10} 5i^2 + 4\]
Here we have some code:
>>> A = 10
>>> A
10
>>> int(23.45)
23
>>> type(A)
int
>>> # this is a comment! 123
>>> for i in range(5):
print(i)
0
1
2
3
4
>>> for i in range(5):
print(i)
0
1
2
3
4
>>> print("yay this works!")
yay this works!
>>> print(10+3)
>>> print(10+3)
13
What about if I want code inline like this: print(10)? How can that work?
This is a test
This is yet another test
Something vertical:
And then something horizontal:
| Number | Type | Description |
|---|---|---|
| 1 | Fire | Tis hot |
| 2 | Water | Tis soggy |
| 3 | Earth | Comprised of the might of the Earth, this specimen has no flashy characteristics |
| 4 | Wind | Breezy |
SELECT * FROM teachers WHERE salary > 40000;
INSERT INTO teachers
VALUES
('Betty', 'Baker HS', 30000),
('Hank', 'Baker MS', 45000);