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

I have this code ```beef var json2 = JsonVariant() { 2, 44, 65 }; defer json2.Dispose(); ``` Each value in initializer will call Add method with parameter 2 inside JsonVariant,...

` ` ` ### What i did, git clone ln -s ./bin/build.sh cp CMakeList.txt .. changed build.sh bash path to /usr/local/bin/bash removed in this file the libffi and llvm depencies...

help wanted

Version: Nightly (04/12/2021) During debugging the "step into" command will only jump to TestClass' constructor if there is a breakpoint in it. Without it, the class constructor's instructions will be...

Definition for ULConfig: ``` namespace Ultralight.Ultralight.CAPI { static { public struct C_Config; public typealias ULConfig = C_Config*; } } ``` Trying to use from another file: ``` using Ultralight.Ultralight; namespace...

Below code cant be compiled without calling base class constructor. But if we uncomment that generic argument of TestMePls class, compilation will be executed without any errors which is wrong....

instead of using `Enum.Parse(str)` you could have something like `MyEnum.Parse(str)`

To reproduce this error, create a project of any type and then create a library containing the following file (the file name doesn't matter), if you don't add the library...

To reproduce this assert failure, create a project of any type and then create a library containing the following two files (the file names doesn't matter), if you don't add...

The assert failure mentioned in the issue title can be easily reproduced if you try to compile a Test project with BeefIDE_d that contains the following two files (their names...