From ad2c884ff0071fde8695a71f8f8a0c8060cc4c91 Mon Sep 17 00:00:00 2001 From: Mikerah Date: Sat, 24 Aug 2019 19:44:56 -0400 Subject: [PATCH] Added missing semicolon to num2bits example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eb7164b..ea66c94 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ template Num2Bits(n) { lc1 === in; } -component main = Num2Bits(8) +component main = Num2Bits(8); ``` First of all, note that templates can have parameters. This allows to create libraries with templates that generate circuits in parametric ways. In this case, the circuit has an output of 8 signals, but one can easily instantiate any circuit with any number of outputs.