1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-19 16:40:26 +02:00
Beef/BeefLibs/corlib/src/Void.bf
2019-09-23 13:48:11 -07:00

10 lines
134 B
Beef

namespace System
{
struct Void : void
{
public override void ToString(String strBuffer)
{
strBuffer.Append("void");
}
}
}