Skip to content

Instantly share code, notes, and snippets.

View morpheus-14's full-sized avatar

Sathya Ravi morpheus-14

  • Promignis
  • India
View GitHub Profile
@morpheus-14
morpheus-14 / .vimrc
Last active September 15, 2018 03:13
My cVimrc
set nohud
set nosmoothscroll
set noautofocus
set scalehints
let searchlimit = 30
let scrollstep = 70
let barposition = "bottom"
let locale = "uk"
@morpheus-14
morpheus-14 / 99problems.hs
Created February 15, 2018 18:08
Ninety Nine Haskell Problems
module Main where
import Data.List
import Data.Tree
import System.IO
-- Q 1
-- Find the last element of a list.
myLast :: [a] -> a