feat(tazjin/rlox): Add support for print statement

Change-Id: Ic3e7e722325c8784b848c0bcd573c2e51e123c40
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2583
Reviewed-by: tazjin <mail@tazj.in>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2021-03-02 22:15:08 +02:00 committed by tazjin
parent 432e7a7ddd
commit 2cd77ea26d
3 changed files with 61 additions and 5 deletions

View file

@ -25,4 +25,7 @@ pub enum OpCode {
OpSubtract,
OpMultiply,
OpDivide,
// Built in operations
OpPrint,
}