-
As more and more features are added to the analysis, it takes longer and longer time to run.
The FizzBuzz analysis alone takes about 17 seconds on my reasonably-fast computer.
Running without analysin…
Zomis updated
7 years ago
-
Começar algo com Java em 2023 é apenas INSANIDADE MENTAL. Ou falta de informação qualificada.
-
Rust is a memory-safe and secure language and is more efficient than Java. Also, the industry trend is shifting towards Rust so we should rewrite this in Rust.
-
-
The IDE will hang if told to "skip to end" with a non-halting program.
Example program:
```brainfuck
+[>+]
```
Actions taken: Program input, run. IDE told to "skip to end."
Expected resu…
ghost updated
6 years ago
-
Add a way for analysis to show hints, warnings and errors to the user
Errors include:
- [ ] Infinite loops (halting problem is unsolvable, but try to detect some basic things)
- [ ] Unbalanced bracke…
Zomis updated
8 years ago
-
Anyone who like to contribute, create a new issue mentioning the preferred language you like to create the program and create a pull request referencing the issue.
-
One limitation of brainfuck is that you can't move left or right in the tape and arbitrary amount during runtime.
For example, you can't start from a cell, and move left or right by the amount giv…
-
I tried this code:
```rust
fn demo(f: F) -> F { f }
fn other(_f: F) {}
fn main() {
let x = || ();
other(x);
let x = demo(|| ());
other(x);
}
```
I expected t…
-
### Environment
- OS and Version: Linux 6.1.0-25-amd64; Debian GNU/Linux 12 (bookworm)
- VS Code Version: 1.93.1
- C/C++ Extension Version: v1.22.6 (pre-release)
- If using SSH remote, specify O…