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
| ### Redirects controller: | |
| class RedirectsController < ApplicationController | |
| def create | |
| redirect_to "http://www.google.com" | |
| end | |
| end | |
| ### Routes |
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
| import Prelude hiding (foldl) | |
| data Moody a = Happy a | Depressed a | |
| deriving Show | |
| foo (Happy a) = Happy (a + 1) | |
| foo (Depressed a) = Depressed (a - 1) | |
| foldl :: (b -> a -> b) -> b -> [a] -> b |
OlderNewer