From 717bd60e864110373c01a237698d6ca22cf08d1f Mon Sep 17 00:00:00 2001 From: Antoine Viallon Date: Tue, 23 May 2023 23:26:05 +0200 Subject: [PATCH] main: add function call to mock --- compiler/__main__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/__main__.py b/compiler/__main__.py index 8607a2c..2c8739b 100644 --- a/compiler/__main__.py +++ b/compiler/__main__.py @@ -30,6 +30,7 @@ def main(): let a: uint32 = byte; } { let b: uint32; } + display(byte, 3) + 1; """ if not args.mock: data = sys.stdin.read().strip()