Compare commits
2 commits
78cc7f0990
...
4d0e1584dc
Author | SHA1 | Date | |
---|---|---|---|
|
4d0e1584dc | ||
|
cc5bc0f28a |
2 changed files with 7 additions and 2 deletions
|
@ -212,7 +212,7 @@ That said I need to lay some ground work for our next abstraction so here's some
|
||||||
|
|
||||||
## Procedures as data
|
## Procedures as data
|
||||||
|
|
||||||
There are 2 ways to interpret what I just wrote.
|
There are 2 ways to interpret the subtilte of this section.
|
||||||
|
|
||||||
1. You can put a procedure in a variable or argument and call it from that variable or argument
|
1. You can put a procedure in a variable or argument and call it from that variable or argument
|
||||||
2. In addition to the first point you can manipulate procedures like any other data such as numbers or lists
|
2. In addition to the first point you can manipulate procedures like any other data such as numbers or lists
|
||||||
|
@ -502,7 +502,7 @@ iterableList <- {
|
||||||
underlying: [1,2,3],
|
underlying: [1,2,3],
|
||||||
currentIndex: 0,
|
currentIndex: 0,
|
||||||
nextItem: PROC(&self) {
|
nextItem: PROC(&self) {
|
||||||
"self how has & prefixed to it"
|
"self now has & prefixed to it"
|
||||||
|
|
||||||
tmpIndex <- self.currentIndex
|
tmpIndex <- self.currentIndex
|
||||||
self.currentIndex <- self.currentIndex + 1
|
self.currentIndex <- self.currentIndex + 1
|
||||||
|
|
|
@ -257,6 +257,11 @@ footer {
|
||||||
/*width:100%;*/
|
/*width:100%;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p, ul, ol {
|
||||||
|
/*need to take up full width for alignment reasons*/
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
/* we really want to make sure this doesn't stick around when colors load in regardless of when/how colors get loaded in*/
|
/* we really want to make sure this doesn't stick around when colors load in regardless of when/how colors get loaded in*/
|
||||||
@layer pre-load{
|
@layer pre-load{
|
||||||
|
|
Loading…
Reference in a new issue