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

22 lines
406 B
C#
Raw Permalink Normal View History

2021-09-20 01:05:36 +00:00
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; }
}
}
}