October 2009
Intermediate to advanced
384 pages
13h
English
This appendix is an ultraterse guide to JavaFX Script, almost like flash cards for each of the topics covered in the main language tutorial chapters earlier in this book. As well as acting as a quick reference to the language syntax, it could also be used by highly confident developers (impatient to get on to the projects) as a fast track to learning the basics of the JavaFX Script language.
JavaFX Script supports comments in the same way as Java:
// A single line comment./* A multi line comment. */
JavaFX Script variables are statically, not dynamically, typed. The language has no concept of primitives in the way Java does; everything is ...