Posts
read more
Catholic particular judgement in programming (for fun only)
[sourcecode language=“c”] int particularJudgement(State* state) { if(state->grace > state->sin) { if(state->punishment) { return PURGATORY; } else { return HEAVEN; } } return HELL; } [/sourcecode]