Skip to content

Instantly share code, notes, and snippets.

@tiagopotencia
Created April 10, 2020 20:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tiagopotencia/04cce27e641085ad96a65191b35a17b9 to your computer and use it in GitHub Desktop.
Save tiagopotencia/04cce27e641085ad96a65191b35a17b9 to your computer and use it in GitHub Desktop.
Uma representação em typescript sobre um dos dias mais importantes da humanidade! Jesus está vivo! Boa Páscoa!
import {SonOfGod} from "heaven";
class Human{
sins: Sin[];
guilts: Guilt[];
forgiven: Boolean;
constructor() {
this.forgiven = false;
}
}
const JESUS = new SonOfGod();
var humanity = Array<Human>();
function GoodFriday() {
humanity.forEach(human => {
human.sins = [];
human.guilts = [];
human.forgiven = true;
});
JESUS.die();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment