1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +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;
}
interface IInteger
{
}
interface IPrintable
{
void Print(String outString);