Copyright © 2024 Sebastiaan Heins
If you followed along with the previous section, you should have a basic understanding of how to write a program in Dosato. This section will go into more detail about the specifications of the language.
            Comments are written with a double slash // and are ignored by the compiler. 
        
            Each line must start with a master keyword (do|set|make|define|return|continue|break|import|include|switch|const). 
        
            Expressions must be written in the following format: 
            [variable] [operator] [variable] [operator] [variable] ... 
            or if unary: 
            [operator] [variable] ...
        
Let's dive into a more technical look at the language. below.