From 92a6686097bef6b3d364b8ab138af050ca3f3d70 Mon Sep 17 00:00:00 2001 From: Antoine Viallon Date: Wed, 24 May 2023 00:45:09 +0200 Subject: [PATCH] main: comment unused variables in mock --- compiler/__main__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/__main__.py b/compiler/__main__.py index fca3eb2..9c0c208 100644 --- a/compiler/__main__.py +++ b/compiler/__main__.py @@ -19,7 +19,7 @@ def main(): data = """ { - let byte: uint32 = 42; + // let byte: uint32 = 42; } let byte: uint32; @@ -27,9 +27,9 @@ def main(): / (byte = 255) + byte; byte = byte + byte; { - let a: uint32 = byte; + // let a: uint32 = byte; } - { let b: uint32; } + // { let b: uint32; } display(byte, 3) + 1; """ if not args.mock: