1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 20:12:21 +02:00

Add IInteger to minlib

This commit is contained in:
Brian Fiete 2021-06-20 10:03:37 -07:00
parent 4ca73ae7be
commit e61d702da1

View file

@ -10,6 +10,11 @@ namespace System
void Dispose() mut; void Dispose() mut;
} }
interface IInteger
{
}
interface IPrintable interface IPrintable
{ {
void Print(String outString); void Print(String outString);