Skip to content

Instantly share code, notes, and snippets.

View Raagh's full-sized avatar
🎯
Focusing on quality

Patricio Ferraggi Raagh

🎯
Focusing on quality
View GitHub Profile
@Raagh
Raagh / snake.hs
Created April 14, 2020 18:50
Functional snake game - Part 1
module Core where
type Columns = Int
type Rows = Int
type Point = (Rows, Columns)
type Apple = Point
type Snake = [Point]
type Moves = [Move]
data Move = North | South | West | East deriving (Show)
@Raagh
Raagh / modifyname.js
Created May 4, 2020 12:40
Programacion functional para el dev orientado a objetos parte 2
let john = { name: "John", age: 18 }
john.name = "Patricio"