This file contains 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
#lang racket | |
;;;;Linear Recursion and Iteration | |
;;;Linear Recursive process for computing factorials (fact-r n) | |
(define (fact-r n) | |
(if (= n 1) | |
1 | |
(* n (fact-r (- n 1))))) |
This file contains 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
{ | |
"quotes": [ | |
{ | |
"quote":"Apelidadas de fazendas do mundo, as florestas do Brasil foram desmatadas principalmente para a criação de gado e forragem para satisfazer o consumo mundial de carne. Estamos restaurando a Mata Atlântica, que era tão exuberante (e tão ameaçada) quanto a Amazônia.", | |
"author":"Ecosia.org", | |
"source": "https://blog.ecosia.org/brazil/" | |
}, | |
{ |