- Xcode command line tools.
- Python3.
- Ruby Stable.
Run following script.
#!/bin/zsh -eu
#!/bin/bash -eu | |
#https://www.vim.org/git.php | |
echo -n "Input work directory (default to home) >> " | |
read WORKDIR | |
echo | |
test -z "$WORKDIR" && WORKDIR=~ | |
test ! -e "$WORKDIR" && mkdir "$WORKDIR" | |
LOGFILE="$PWD/$WORKDIR"/vim/viminstall.log |
'use strict' | |
function MyClass() { | |
function fnc() { | |
console.log(this, 'in fnc'); | |
} | |
const arrow = () => { | |
console.log(this, 'in arrow'); | |
} | |
const bind = function() { |