Releases: dotlang-pwsh/dotlang
dotlang v2
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.
dotlang v1
yeah, the first release.
for windows, download dotsetup.exe
from below, and set it up.
after that, you can use dotlang
!
for GNU/Linux and MacOS, download the source code and install jq
, extract the source code somewhere, then make in in PATH
and that's it!