check out the repo for meowlang extension here
I merged dev branced into prod : ( so be aware it has lots of bugs
Follow meowlang on insgram @meow__lang
First make 2 folders named lib
and build
keep the names same
then in the root directory type make
or if using mingw type mingw32-make
the binaries will be created in the build
folder. you can delete the lib folder it's only need for compilation.
# this is a comment
# Meowlang is dynamicly typed.
x = 10
y = "Hello" # don't use '' for strings ok baby.
z = "bruh"
b = 12.31
# array can hold any type of data but it will be fixed in lenght throught the programs run time.
x = {"this", "is", "an", "array", 1,23423, 3423, 23.20}
func foo()
{
print("hello this is a function")
}
min = 0
max = 10
# while loop
while (min < max)
{
print(min)
}
x = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
for i in x
{
print(i)
}
a = 10
b = 10
if a == b
{
print("they are same")
}
elif a <= b
{
print("a is less than or equal to b")
}
else
{
print("idk")
}
If you want to donwload and get started using meow-lang, resources listed below will help you.
How to install meow-lang (This video was made with meowlang v1 so it has old syntax. I'll update with a newer one soon)
How to use meow-lang (This video was made with meowlang v1 so it has old syntax. I'll update with a newer one soon)