21 lines
406 B
C#
21 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; }
|
|
}
|
|
}
|
|
}
|