Skip to content

Instantly share code, notes, and snippets.

@vicnicius
Last active January 24, 2021 16:47
Show Gist options
  • Save vicnicius/90005e82d027f44ac867bf254f223a6e to your computer and use it in GitHub Desktop.
Save vicnicius/90005e82d027f44ac867bf254f223a6e to your computer and use it in GitHub Desktop.
import { checkIfHalts } from 'impossible-js';
function checkIfHaltsModified(fn, a) {
const doesItHalt = checkIfHalts(fn, a);
if (doesItHalt) {
while (true) continue;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment