Beef
Beef copied to clipboard
Beef Programming Language
Set target triple on current configuration to any value, i have tried `i386-unknown-elf` and this message box will pop up It's probably windows/IDE related as I'm able to set target...
minor inconviniece ```beef class Foo {} public static void Bar(this Foo foo) {} public static mixin Bar(this Foo foo) {} Foo foo = scope .(); foo.Bar(); // works foo.Bar!(); //...
```CSharp [Comptime(ConstEval = true)] public static void UsesUnwarn() { Compiler.MixinRoot(""" #unwarn let field = 123; """); } public static void Main() { UsesUnwarn(); UsesUnwarn(); // A variable named 'field' has...
Consider the following C++ program: ```C++ // MyStaticLib.h struct MyStruct { float x; }; namespace MyNamespace { MyStruct GetMyStruct(); } ``` ```C++ // MyStaticLib.cpp #include "MyStaticLib.h" MyStruct StaticLib::GetMyStruct() { MyStruct...
I replaced some instances of wsock32.lib with Ws2_32.lib, so the code will be more coherent. I don't know if it makes any difference, but Ws2_32.lib should ensure that WinSock2 is...
The code below fails to compile with the error "Only one destructor allowed". This error occurs only if EmitTypeBody emits any code and both the extension and the extension's base...
This issue seems related to #2123, but this time I'm getting linker errors when I try to compile the project. Here's a sample of the errors: ``` LuaTinker__.lib(LuaTinker_StackHelpers_StackHelper@LuaTinker_Tests.obj) : error...
```CSharp static { public static void Main() { Object obj = MyEnum.Entry1; let result = Enum.Parse(obj.GetType(), "Entry1"); // The line above fails to parse (this line prints "Err()") Console.WriteLine(result); }...
The newer versions of emscripten have support for a build in version of sdl3, which would be nice to use instead of having to build it manually. So updating the...