test double dash

Description

  • - decrement the current value in the tape, wrapping back to 255 after 0 (*ptr—)

Judge

(async function*(context: Context): Challenge {
	// Single Test
	yield (await context.run(undefined)).assertEquals('Hello World!');


	// Finally, the challenge is passed if no test cases failed
	return context.noFailures();
})

Example Code

console.log("Hello World!")

Comments