Lukasz Czerwinski
Lukasz Czerwinski
Here is my environment: ``` export const values: Values = { hello: 'Hi, this is your Ask server', helloD: () => "Hello, this is AskQL server! It's " + new...
The [Askscript Playground](http://cli.askql.org) has a couple of examples now but it will be great to add there 15-20 more, half of them showing different features of the language and half...
Following [a discussion in another issue](https://github.com/xFAANG/askql/issues/250#issuecomment-650559629), we want to be able to write in AskScript expressions like: ``` 7 = ((7 div 3) * 3) + (7 mod 3) ```...
After I wrote quite a long program in AskScript in Playground, I accidentally swiped on my touchpad when trying to scroll the code window and left Playground. After I came...
Currently, there is no simple way to use AskScript from JS in frontend (or at least it's not documented at all). This ticket is about resolving this issue.
Consider the following program: ``` ask { const factorial: int(int) = fun(n:int):int { if (n < 2) { return n } n * factorial(n - 1) } 200:factorial } ```...
Consider the following two programs: ## AskScript (AskVM) Source code: ``` let a = 0; log(date(), a); while (a < 10000000) { if ((a / 1000):equals(floor(a / 1000))) { log(date(),...
In order to provide Developer Support functionalities, such as #360, we need a method which returns a list of available values. For each of values it should return at least:...
After iterating 30-60 000 times when running the AskScript program (below) `node` process consumed up to 2GB of RAM. ``` let a = 1 while(a>0) { if ((a/1000):equals(floor(a/1000))) { log(a)...
In order to provide Developer Support functionalities, such as https://github.com/xFAANG/askql/issues/360, we need a method which returns a list of available resources. For each of resources it should return at least:...