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
colorscheme morning | |
if has("gui_macvim") | |
let macvim_hig_shift_movement = 1 | |
endif | |
set nocompatible | |
source $VIMRUNTIME/vimrc_example.vim | |
source $VIMRUNTIME/mswin.vim |
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
(ns precip | |
(:use [clojure.math.numeric-tower :only (expt)])) | |
(defn average [l] | |
(float (/ | |
(reduce + l) | |
(count l)))) | |
(defn variance [l] | |
(let [vmean (average l)] |
NewerOlder