選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

29 行
576 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace SuperBASIC
  5. {
  6. class Library
  7. {
  8. internal List<IFunction> functions;
  9. internal List<int> arities;
  10. internal Dictionary<string, int> nameResolution;
  11. public Library()
  12. {
  13. functions = new List<IFunction>();
  14. arities = new List<int>();
  15. nameResolution = new Dictionary<string, int>();
  16. }
  17. public int AddFunction(IFunction fn, int arity, string name)
  18. {
  19. int idx = functions.Count;
  20. functions.Add(fn);
  21. arities.Add(arity);
  22. nameResolution[name] = idx;
  23. return idx;
  24. }
  25. }
  26. }