I’ve been working on Panther, a strong, fast and easy to use programming language focused on simplifying cybersecurity and security-testing workflows.
Why Panther --
Panther language is *Very Easy to use,* *Very fast,* *Modern and* *Cross platform(Windows and Linux)*
The language has a good support of examples(included in the downloads from github)
Example code --
// ===================================== // Simple Calculator // =====================================
Print("=== SIMPLE CALCULATOR ===");
Accept(x, "Enter first number: ");
Accept(y, "Enter second number: ");
var a = x;
var b = y;
var sum = a + b;
var difference = a - b;
var product = a * b;
var quotient = a/b;
Print("Sum: " + sum);
Print("Difference: " + difference);
Print("Product: " + product);
Print("Quotient " + quotient);
If (b != 0) { var quotient = a / b; Print("Quotient: " + quotient);
} Else { Print("Cannot divide by zero"); }
Print("=== CALCULATION COMPLETE ===");
The language also has a VS code extension. You can get more information here(README) --
https://github.com/CzaxStudio/Panther
Download Panther --
Official Website -- https://pantherlang.pages.dev/
Github --
https://github.com/CzaxStudio/Panther(For better example support)
Hope you will make, create and use ethically:)
Goodbye
-- Unknown Creator(From Czax Studio)