This file contains hidden or 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
for window in `tmux list-windows -F '#I'`; do | |
tmux select-window -t $window | |
tmux send-keys "source ~/.zshrc" C-m | |
done |
This file contains hidden or 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
{-# LANGUAGE MonadComprehensions #-} | |
import Prelude hiding (maybe) | |
import Control.Applicative | |
data MyMaybe a = MyJust a | MyNothing deriving (Show) | |
-- 夏休みの宿題 MyMaybeの作成。Maybeを自分で実装しよう (モナドは関係ない) | |
-- このファイルに書かれたテストを実行するにはdoctestを利用します。 | |
-- * stackをつかっている場合は stack install doctest |