Skip to content

dotlang v2

Latest
Compare
Choose a tag to compare
@neoapps-dev neoapps-dev released this 18 Jul 17:18
· 3 commits to main since this release

yay!! dotlang v2 is here!

Change log:
1- added dotsharp that allows you to integrate C# with dotlang! (Usage: dotsharp "CLASS.FUNCTION(PARAM1,PARAM2,ETC)"
2- added dotserver integrated with dotsharp to make a simple HTTP local server that returns an HTML data.
3- added dotkey for getting user input!
4- added expressions..
you know how in Java we use if (1 == 2) {} but in PowerShell, if (1 -eq 2) {}
well, in dotlang, if (== 1 2) {} that's the best we can do 😢
other expressions:

  • == (equal to)
  • _> (greater than)
  • _< (less than)
  • n= (not equal to)
  • => (greater or equal to)
  • =< (less or equal to)

5- added dotsort (will be sort on v3) to sort Arrays
6- added dotfactorial to get the factorial of a number
7- added dotgui for making apps that has a GUI (uses WPF)
8- added dotuid for getting a GUID
9- added dotregex for replacing a text according to a regexp.