statementscomments.pde
来自「This is processing for java examples.」· PDE 代码 · 共 21 行
PDE
21 行
/** * Statements and Comments. * * Statements are the elements that make up programs. * The ";" (semi-colon) symbol is used to end statements. * It is called the "statement terminator." * Comments are used for making notes to help people better understand programs. * A comment begins with two forward slashes ("//"). */// The size function is a statement that tells the computer // how large to make the window.// Each function statement has zero or more parameters. // Parameters are data passed into the function// and used as values for specifying what the computer will do.size(200, 200);// The background function is a statement that tells the computer// which color to make the background of the window background(102);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?