This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C-p Up one line | |
C-n Down one line | |
C-f Forward one character | |
C-b Backward one character | |
C-a Beginning of line | |
C-e End of line | |
C-v Down one page | |
M-v Up one page | |
M-f Forward one word | |
M-b Backward one word |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(def hundred-times (partial * 100)) | |
(hundred-times 5) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(clojure.string/join " " (map name [:welcome :to "clj-fiddle" :!])) |