From a74257f4076fc27f94324955c5a794990fd66a0d Mon Sep 17 00:00:00 2001 From: kotleta2007 Date: Fri, 12 Apr 2024 12:46:12 +0200 Subject: Update bc.html.markdown (#4892) The global variable syntax and the pre-set variable syntax is invalid. On bc 1.07.1 it produced syntactic errors. I modified the tutorial so that it doesn't include these syntaxes. --- bc.html.markdown | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'bc.html.markdown') diff --git a/bc.html.markdown b/bc.html.markdown index 1103d7bb..3420f766 100644 --- a/bc.html.markdown +++ b/bc.html.markdown @@ -41,15 +41,11 @@ if(hour < 12) { /*Operators are exactly like C.*/ \t: tab \\: backslash*/ } else { - /*Variables are global by default.*/ - thisIsGlobal = 5 - /*You can make a variable local. Use the "auto" keyword in a function.*/ + print "Good afternoon\n" } -/*Every variable is pre-set to 0.*/ -num = blankVariable /*num is set to 0.*/ - /*Like C, only 0 is falsy.*/ +num = 0 if(!num) {print "false\n"} /*Unlike C, bc does not have the ?: operators. For example, -- cgit v1.2.3