Thinking About LogiX

From Neos Wiki
Revision as of 13:05, 23 February 2021 by Aesc (talk | contribs) (Marked this version for translation)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Other languages:
English • ‎日本語

Learning to program from scratch can be daunting, and even those with prior experience often have trouble when first picking up LogiX.

This article aims to teach you how to think about LogiX, and how to turn your ideas into working systems.

This article is not a general-purpose LogiX reference. For that, see LogiX Overview.

Starting Out

A computer program takes in information, does work with that information, and outputs its results.

Thus, when writing a program (in any language), you have a few issues to think about:

  • What information does my program use, and how will I get that information?
  • What will I do with that information?
  • How will I use the results of my work?

TODO: most of the article