Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Adverbs.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"\n",
"K's adverbs, like their namesakes in linguistics, determine _how_ a verb is applied to its arguments. We can think of them as advanced functional looping constructs. If you're familiar with _filter_, _map_ or _reduce_ from other languages, these would be examples of adverbs in k. The adverbs in k tend to be overloaded on argument types, meaning that some care is required when deciphering code. \n",
"\n",
"In `ngn/k`, there is a ref-card for adverbs available as `\\'`. The basic adverbs in most ks are _each_ `'`, _reduce_ `/`, _scan_ `\\`, _each-prior_ `/:`, _each-right_ `/:` and _each-left_ `\\:`, but many more are overloaded on the basic set depending on argument types and valence.\n",
"In `ngn/k`, there is a ref-card for adverbs available as `\\'`. The basic adverbs in most ks are _each_ `'`, _reduce_ `/`, _scan_ `\\`, _each-prior_ `':`, _each-right_ `/:` and _each-left_ `\\:`, but many more are overloaded on the basic set depending on argument types and valence.\n",
"\n",
"As types matter so much for this, we'll adopt the following notation, variations of which most ks use in their ref-cards:\n",
"\n",
Expand Down