-
Are you using register variables and fastfunctions at POCA?
For example:
```
fastfunction fibR(reg n){
n = +n;
return (n < 2) ? n : (fibR(n-2) + fibR(n-1));
}
```
-
I know PrismJS already supports Pascal language. However, modern Pascal language –that's being used by [Delphi](http://embarcadero.com/products/delphi), [Free Pascal](http://freepascal.org/), [Oxygene…
-
Hello,
Out of curiosity, from the description "JetBrains internship 2019 task.", JetBrains is a world leading development tools vendor, do they use Pascal internally? Or they are having a plan for…
-
- [x] I confirm that this is a issue rather than a question.
## Bug report
#### Version
1.0.0-alpha.31
#### Steps to reproduce
我在markdown里输入
```
```mathematica
Tabl…
-
I've got a Debug Adapter for LLDB (lldb.llvm.org) which works fine on Linux. I'm trying to get this working on Windows and running into some problems. The second I make a call into the CRT to read f…
-
I am trying to create GIST with the following Object.
Getting error but it was working fine in previous versions.
```
private GIST_JSON_EMPTY: GitHubApi.GistsCreateParams = {
description: "…
-
From the it is not clear which AMQP version is supported.
Can you please document that?
-
Hello,
I'm looking for easy way control relay (220V load) with modbus and input pins (push buttons) on C0135 board.
As far as I understand I need to implement modbus and handling push buttons with G…
-
Is there a specific reason why the fp-compiler is only available in the arm repository, and not the aarch64 repository? How much effort would it take to create a fp-compiler package for aarch64.
-
The logical C# design of TRY/CATCH is like so:
```
try catch | finally
having = a single statement or compound statement with { }
```
for example, this is a perfectly legal code, as expected…