Comment
FXS has 3 main methods of annotation.
# Sample code
<!-- fxml -->
<fxs module="sample">
Method one: A single-line comment
/*
Method two: Multi-line comments
*/
/*
Method three: End comment. That is, all FXS codes starting with /* and onwards are commented
var a = 1;
var b = 2;
var c = "fake";
</fxs>
In the above example, all FXS code is commented out.
the only difference between > Method Three and Method Two is that there is no */ terminator.
Last update: 2022/08/11, 20:42:12