Skip to content

Instantly share code, notes, and snippets.

@IQAndreas
Created December 21, 2012 23:32
Show Gist options
  • Save IQAndreas/4356583 to your computer and use it in GitHub Desktop.
Save IQAndreas/4356583 to your computer and use it in GitHub Desktop.

IQAndreas: What is the name for a "not scripting language"? (e.g. AS3, Java)

leichtgewicht: imho this describes the just use:

  • scripted - changeable at runtime (eval)
  • interpreted - to byte code (as3)
  • compiled - to machine code

IQAndreas: Perhaps I'm using "scripting language" incorrectly. Take for instance PHP or Shell which run from start to finish, then stop. AS3 or Java code typically "stay alive" and run code "continuously". What is the proper name for that?

leichtgewicht: You mean single-threaded languages? ;) (you can run php forever, http://php.net/manual/en/function.sleep.php )

IQAndreas: And you can also sit backwards on a motorcycle while driving it; that doesn't mean it's a good idea. In my opinion, PHP syntax (or semantics?) isn't written for running forever. ;)

leichtgewicht: I understand where you come from but its more a "runtime" and "use" characteristic: "request-based" system?!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment