mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-19 16:40:26 +02:00
10 lines
134 B
Beef
10 lines
134 B
Beef
namespace System
|
|
{
|
|
struct Void : void
|
|
{
|
|
public override void ToString(String strBuffer)
|
|
{
|
|
strBuffer.Append("void");
|
|
}
|
|
}
|
|
}
|