summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorcaminsha <c.96marco@hotmail.com>2020-01-30 17:49:48 +0100
committercaminsha <c.96marco@hotmail.com>2020-01-30 17:49:48 +0100
commitf3f32e2d814650db6ce633a73ba99ef0c8ceaef1 (patch)
treedddfac4971ac073ea72dee3c10bbcfff9d8ee11a
parent42ce472cf95d60bbd1f64ed022c84362dfc3cf6f (diff)
made newlines so that the content is not more than 80 char
-rw-r--r--de-de/bc.html.markdown6
1 files changed, 4 insertions, 2 deletions
diff --git a/de-de/bc.html.markdown b/de-de/bc.html.markdown
index 61ae1b79..3e04f2a7 100644
--- a/de-de/bc.html.markdown
+++ b/de-de/bc.html.markdown
@@ -44,7 +44,8 @@ if(hour < 12) { /*Operatoren sind genau wie in C*/
} else {
/* Standardmässig sind Variablen global. */
thisIsGlobal = 5
- /*Variablen können lokal gemacht werden. Benutze das Schlüsselwort "auto" in einer Funktion.*/
+ /*Variablen können lokal gemacht werden. Benutze das Schlüsselwort "auto"
+ in einer Funktion.*/
}
/* Jede Variable hat als Voreinstellung den Wert 0. */
@@ -84,7 +85,8 @@ define x(n) {
return n + x
}
x(3) /*4*/
-print x /*Es stellt sich heraus, dass x ausserhalb der Funktion nicht zugänglich ist.*/
+print x /*Es stellt sich heraus, dass x ausserhalb der Funktion nicht
+ zugänglich ist.*/
/*Arrays sind äquivalent zu C Arrays.*/
for(i = 0; i <= 3; i++) {
a[i] = 1