I recently got an assignment where I volunteer to teach kids a basic programming language. I chose Small Basic, as it's relatively easy to learn and teaches the basics of programs (if, for and while).
I haven't used it much before (I learned how to do if/for/while loops but that's about it) and was wondering if there's a way to comment out lines of code at a time. For example, in C# you can do this:
//Comment
//Comment
Or
/*Comment
Comment
Comment/*
Is there a way to do the latter in small basic? I know you can do this:
'Comment
'Comment
Etc, but can you do a ton of lines at once?