This repository has been archived on 2021-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
reemo-gasi/GASi/Stdlib.cs
2021-09-20 03:05:36 +02:00

22 lines
406 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace GASi {
static class Stdlib {
private static MethodTable functions;
public static void Initialize() {
}
public class StdMethod : MethodTable.Method {
public string Translation { get; set; }
}
}
}