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

This PR updates the BeefySysLib SDL implementation and provides experimental linux support to the IDE. While it is not currently in a state ready for general use, it is somewhat...

```cs using System; namespace BeefTest; class Program { public static void Main() { } // Put an '=' in the below line so as to define Int=int, the IDE hangs...

When using the IDE's embedded console (Settings -> Console -> Debug Console -> Embedded) and running a console application, a second, standalone console window will sometimes pop up alongside the...

Being able to run the code generators from the commandline would further both automation and also linux support. It also seems like a generally useful thing to have if the...

IDE encounters a fatal error and terminates while building the below code (taken from Beef Documentation page 'Pattern Matching'. ```cs using System; namespace BeefTest; class Program { public static void...

Recently noticed that some archived files report error on decompression with `tinfl_decompress` returning `HasMoreOutput` but the extracted data would be valid. This PR fixes that by removing the cast to...

```CSharp public struct MyStruct { public int field1; public int field2; public int field3; } // Somewhere else... MyStruct struct1 = .() { // As expected, beginning to type "field"...

Watch window is not able to see ptr. ```cs using System; namespace BeefTest; struct Inner { using struct { public int x = ?; }wrapper; int* ptr = &x; public...

In the following code, debugging with 'Step Into' from Outer constructor finally reaches line 2 (namespace BeefTest;) instead of line 8 (int* ptr = &x;). Anyway, functionality is working fine....

```beef public static int32 FOO_VERSION(int32 major, int32 minor) => ((major)