Difference between revisions of "Learning Programming Overview"
From VistApedia
DavidWhitten (talk | contribs) (Created page with "== An overview of Computers and Programming == == Basic Elements of Programming == === Information and Data === ==== Describing Values ==== ==== Strings ==== ===== Interpretin...") |
DavidWhitten (talk | contribs) |
||
Line 9: | Line 9: | ||
==== Names and Variables ==== | ==== Names and Variables ==== | ||
===== Hiding and New names ===== | ===== Hiding and New names ===== | ||
− | ====== NEW ===== | + | ====== NEW ====== |
===== Initializing ===== | ===== Initializing ===== | ||
====== SET ====== | ====== SET ====== | ||
Line 55: | Line 55: | ||
==== Input/Output ==== | ==== Input/Output ==== | ||
===== Creating Channels ===== | ===== Creating Channels ===== | ||
− | ====== OPEN ==== | + | ====== OPEN ====== |
===== Manipulating Channels ===== | ===== Manipulating Channels ===== | ||
====== USE ====== | ====== USE ====== | ||
===== Destroying Channels ===== | ===== Destroying Channels ===== | ||
− | ====== CLOSE ===== | + | ====== CLOSE ====== |
===== Interrupting Channels ===== | ===== Interrupting Channels ===== | ||
===== Channels and Values ===== | ===== Channels and Values ===== | ||
− | ====== Values FROM External Source ===== | + | ====== Values FROM External Source ====== |
====== READ ====== | ====== READ ====== | ||
− | ====== Values TO External Source ===== | + | ====== Values TO External Source ====== |
====== WRITE ====== | ====== WRITE ====== | ||
====== Formatting ====== | ====== Formatting ====== | ||
− | ====== ? - tabs ===== | + | ====== ? - tabs ====== |
====== # - start ===== | ====== # - start ===== | ||
====== ! - New Line vs. Carriage Return ==== | ====== ! - New Line vs. Carriage Return ==== | ||
− | ====== Controlling I/O ===== | + | ====== Controlling I/O ====== |
==== Coordinating ==== | ==== Coordinating ==== | ||
− | ===== LOCKing ==== | + | ===== LOCKing ===== |
=== Implementation Specific === | === Implementation Specific === | ||
==== Z* & $Z & $VIEW & VIEW ==== | ==== Z* & $Z & $VIEW & VIEW ==== |
Latest revision as of 17:50, 28 October 2015
Contents
- 1 An overview of Computers and Programming
- 2 Basic Elements of Programming
- 2.1 Information and Data
- 2.2 Control Structures
- 2.3 Communicating
- 2.4 Implementation Specific