ark1320 Posted December 20, 2021 Report Share Posted December 20, 2021 What is the proper way to add comments to an .Hav file in the FSUIPC7 WASM module Hvar file Persistent area; that is, what symbol(s) designate a comment? Thanks, Al Link to comment Share on other sites More sharing options...
John Dowson Posted December 20, 2021 Report Share Posted December 20, 2021 Any line starting with a semicolon (';') or double slash ('//') is ignored, so you can use these for full line comments. Hvars themselves cannot contain spaces, so the hvar name is read up to the first space, and anything after that is ignored. So you can add comments after a space. Probably a good idea to use your own designator though, e.g. '//' or '--'. John Link to comment Share on other sites More sharing options...
ark1320 Posted December 20, 2021 Author Report Share Posted December 20, 2021 8 hours ago, John Dowson said: Any line starting with a semicolon (';') or double slash ('//') is ignored, so you can use these for full line comments. Hvars themselves cannot contain spaces, so the hvar name is read up to the first space, and anything after that is ignored. So you can add comments after a space. Probably a good idea to use your own designator though, e.g. '//' or '--'. John Thanks! Al Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now