Skiylia-Lang / Verboscript

A toy programming language made in python; designed to be close to written english
GNU General Public License v3.0
2 stars 0 forks source link

Comments #7

Open SK1Y101 opened 3 years ago

SK1Y101 commented 3 years ago

single line comments

C: “// this is a comment” Python: “# this is a comment”

I propose using some thing like: “Comment: this line is a comment”

Block (multi line) comments

C: “/* this entire thing is a comment

Python: “ ‘’’ this entire thing is a comment Every single line in fact ‘’’ “

This language: I don’t actually know yet.