Update OpCode7.scala

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

View file

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