Comments

There are two types of comments in the G-Creator Language.
There are single lined comments, and there are multi-line comments.
Comments are not compiled, they are only there to assist whoever looks at the code to understand what the purpose of the code is.
// This is a single-lined comment.
// These can be good for stating the purpose of a piece of code or function.

/* This is a multi-lined comment.
This may be useful for excluding large amounts of code from a project.
You cannot have a multi-lined comment inside of a multi-lined comment.
If a comment is not closed with * followed by a /, then everything below the "/*" is commented out. */