SweetLang ( Soon )
A interpreter of SweetLang, is writed in Go Programming language. SweetLang is made with clarity and simplicity we try to make its syntax as transparent as possible for everyone, not even a programmer. Syntax is inspired languages such as GoLang, C and a little bith Python
Example syntax
package main
func main() {
print("Hello SweetLang your'e sooo sweettt 🍬")
}
Variable stuff
package main
func main() {
// With type
string exampleVariable1 = "Hello World!"
int exampleVariable2 = 1234567
boolean exampleVariable3 = true
// With unknow type
const exampleConstantVairable1 = "Constant variable!"
print("{{exampleVariable1}}")
print("{{exampleVariable2}")
print("{{exampleVariable3}")
print("{{exampleConstantVairable1}}")
}