mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-04-27 07:33:57 +00:00
Update processing.html.markdown
This commit is contained in:
parent
8f5f8d576b
commit
45432cdc0d
@ -5,15 +5,17 @@ contributors:
|
|||||||
- ["Phone Thant Ko", "http://github.com/phonethantko"]
|
- ["Phone Thant Ko", "http://github.com/phonethantko"]
|
||||||
---
|
---
|
||||||
Processing is a programming language for creation of digital arts and multimedia content, allowing non-programmers to
|
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,
|
learn fundamentals of computer programming in a visual context.
|
||||||
its syntax has been largely influenced by both Java and Javascript syntaxes. [See more here](https://processing.org/reference/)
|
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.
|
The language also comes with its official IDE to compile and run the scripts.
|
||||||
|
|
||||||
```Processing
|
```Processing
|
||||||
// Single-line comment starts with //
|
// 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 /* */
|
Multi-line comments are wrapped around /* */
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user