summaryrefslogtreecommitdiffhomepage
path: root/de-de/processing-de.html.markdown
diff options
context:
space:
mode:
authorcaminsha <c.96marco@hotmail.com>2020-03-08 20:00:57 +0100
committercaminsha <c.96marco@hotmail.com>2020-03-08 20:00:57 +0100
commitb7aea95d260e3812cf28b516636d6e3b34d435bc (patch)
tree9d499cd9b7fd52aac266c44ecad848fb775a1d24 /de-de/processing-de.html.markdown
parentf49bfb839890343b36359b026e303b4b8c62efcf (diff)
added import section
Diffstat (limited to 'de-de/processing-de.html.markdown')
-rw-r--r--de-de/processing-de.html.markdown12
1 files changed, 12 insertions, 0 deletions
diff --git a/de-de/processing-de.html.markdown b/de-de/processing-de.html.markdown
index 3513529d..08b58e3f 100644
--- a/de-de/processing-de.html.markdown
+++ b/de-de/processing-de.html.markdown
@@ -410,3 +410,15 @@ Dokumentaion.
```
// Bevor wir weiterfahren, werde ich einige Aspekte zum Importieren von
// Bibliotheken und Paketen sagen, damit du Processing erweitern kannst..
+
+/* -------------------------------------------------
+ Import
+ -------------------------------------------------
+*/
+
+// Die Macht von Processing kann besser veranschaulicht werden, wenn wir
+// Bibliotheken und Pakete importieren.
+// Die Import-Anweisung kann wie unten geschrieben zu Beginn des Quelltextes
+// geschrieben werden.
+import processing.something.*;
+```