diff options
author | Phone Thant Ko <phonethantko@outlook.com> | 2018-06-29 16:59:16 +0630 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-29 16:59:16 +0630 |
commit | 45432cdc0d9ccf083d4f32be4fa175ee0fa6bbe2 (patch) | |
tree | 2f1f0021ad7ca1e74ba174358ee82c080fc393f0 | |
parent | 8f5f8d576bf248a2af9689cb88161f06e2a47e02 (diff) |
Update processing.html.markdown
-rw-r--r-- | processing.html.markdown | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/processing.html.markdown b/processing.html.markdown index 707e09c9..f4b90882 100644 --- a/processing.html.markdown +++ b/processing.html.markdown @@ -5,15 +5,17 @@ contributors: - ["Phone Thant Ko", "http://github.com/phonethantko"] --- Processing is a programming language for creation of digital arts and multimedia content, allowing non-programmers to -learn fundamentals of computer programming in a visual context. While the language is based off on Java language, -its syntax has been largely influenced by both Java and Javascript syntaxes. [See more here](https://processing.org/reference/) +learn fundamentals of computer programming in a visual context. +While the language is based off on Java language, +its syntax has been largely influenced by both Java and Javascript syntaxes. [See more here](https://processing.org/reference/) The language also comes with its official IDE to compile and run the scripts. ```Processing // Single-line comment starts with // /* - Since Processing is based on Java the syntax for its comments are the same as Java (as you may have noticed above)! + Since Processing is based on Java, + the syntax for its comments are the same as Java (as you may have noticed above)! Multi-line comments are wrapped around /* */ */ |