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
const assert = require('assert'); | |
// const is_even = n => | |
// (n === 0) || !is_even(n - 1); | |
const mock_is_even = (myself, n) => | |
(n === 0) || !myself(myself, n - 1); | |
const mockingbird = | |
fn => |