michalss
michalss
Hello, Still not sure how to add custom command and his function. :( In this article : http://www.codemag.com/Article/1607081/How-to-Write-Your-Own-Programming-Language-in-C# , i did try and it works ok, but it is a...
Also found the bug, once i assing string its print it to console output why ? example: $ip = "127.0.0.0"; will print ip to console, but it is not wanted...
Another bug: if else does not work.. Couldn't parse [else] in StringOrNumber
hmm well, I have to say it does not work at all. - elif does not work Pls try it yrself. It is not work... BTW in your examples u...
Ok thx all working now. Another question how can i concat string pls ? Example: machine = import(); file_to_check = "\\"; file_to_check += machine; file_to_check += "\c$\Program Files\application.exe"; print(file_to_check);
i cannot use "\\" this always get me cannot parse it.. :( But is there a way to make it work ?
No my point was to use "\\\\" i need to save into variable double backslash..
Wrong parse, it wont take it.. :( Couldn't parse ["\\\\\\\\";] in StringOrNumber
This , but not matter what it wont parse it in any case when i use even single \\ \\\\machine\\c$\\Program Files\\Company\\Client\\app.exe and this i want to save it into variable
No it does not work as excepted. Machine is variable string with ip or pc name in it.. x = "\\\\"; x += machine; x += "\\c$\\Program Files\\Company\\Client\\app.exe"; print(x); return...