This cheatsheet is forked from henrik/tmux_cheatsheet.markdown.
As configured in my dotfiles.
Remember to start the shell with utf-8 supprt, by export LANG=utf-8 or similarly LC_ALL, LC_CTYPE.
start new:
This cheatsheet is forked from henrik/tmux_cheatsheet.markdown.
As configured in my dotfiles.
Remember to start the shell with utf-8 supprt, by export LANG=utf-8 or similarly LC_ALL, LC_CTYPE.
start new:
| struct S { int i; }; | |
| S s; | |
| S& func1() { return s; } | |
| S func2() { return s; } | |
| int main() { | |
| func1() = {5}; | |
| func2() = {5}; | |
| return 0; |
| -- released under CC0 by favonia | |
| import System.Environment | |
| fix f = let lfp = f lfp in lfp | |
| quotes :: [String -> String] | |
| quotes = map q $ cycle [("「", "」"), ("『", "』")] | |
| where q (l,r) str = l ++ str ++ r |