Update OpCode8.scala

This commit is contained in:
kamoshi 2019-12-09 22:14:46 +01:00 committed by GitHub
parent 0937b2cf34
commit f4a2fc4bf0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,10 @@
package intcode.opcode
/**
* Equals
* If the first parameter is equal to the second parameter, it stores 1 in the position given by the third parameter.
* Otherwise, it stores 0.
*/
case object OpCode8 extends Action
{
/** length of an instruction */