Beef icon indicating copy to clipboard operation
Beef copied to clipboard

Beef Programming Language

Results 279 Beef issues
Sort by recently updated
recently updated
newest added

In the following example the string that has been added to "MyList" will be detected as a memory leak after a few seconds eventhough it's not actually a leak. Replacing...

It would be very useful to have some way to "redefine" a parameter in one line, in beef you can't redefine parameters because everything is passed as an `in` parameter,...

In the below code, if you step into `TestStep` and step into the recursion, the recursion will be skipped and it will be already in `i = 10`. ``` static...

https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/using-statement ``` string manyLines=@"This is line one This is line two Here is line three The penultimate line is line four This is the final, fifth line."; using var reader...

I noticed that the following code doesn't work in Beef: ``` uint32 i = 0; char8[] array = default; array[i].ToString(.. scope .()); // ERROR: Unable to implicitly cast 'uint' to...

Related: https://github.com/beefytech/Beef/issues/637 https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-8#switch-expressions

Added new command that toggles breakpoint(s) at begin of scopes. Not bound by default.

This doesn't work but I think it should: ```c# const int = { int x = 123; x }; // Error: Expression does not evaluate to a constant value. ```...

This doesn't work, but I think it should: ```c# struct S { public int x, y; } const S s = .{ x=42, y=314 }; ``` If nothing else, then...

Tested with todays build (however, llvm in extern folder was built in April 2021, if this is the problem let me know or if this doesn't repro). In the attached...