tmpd = Dict([1, 2, 3] .=> ["one", "two", "three"])
typeof.([1, 1.0, "one"])
f\_1<tab>
1 \in<tab> [1, 2, 3]
x->sin(x)
(x->sin(x))(\pi<tab> / 2)
# call with, e.g. rot(pi/2)([1, 0])
rot(t) = ((x,y),) -> [cos(t)*x + sin(t)*y, -sin(t)*x + cos(t)*y]
# another way, call with `rot(pi/2)([1, 0])`
rot(t) = ((x, y),) -> [cos(t) sin(t); -sin(t) cos(t)]*[x, y]
[1 2] * [1, 2] # == 5
using Dates
datetoday = Dates.today()
datetoday + Dates.Day(35*7) # 35 weeks
datetoday + Dates.Year(1234) + Dates.Month(3) + Dates.Day(2)