interpreter_name

実行中のインタプリタの名前を取得します。


taiseiue | 2021-11-19

定義

名前空間: Alice.Interpreter
アセンブリ: Losetta.dll
ソースコード: Alice.Interpreter.cs

interpreter_name()

実行中のインタプリタの名前を取得します。この関数によって返される値はenv_impl_nameと同じです。

AliceScript
namespace Alice.Interpreter;
public string interpreter_name();
戻り値
string 実行中のインタプリタの名前。

対応
AliceScript RC1、RC2、GM、2.0、2.1、2.2、2.3、3.0
AliceSister GM、2.0、2.1、2.2、2.3、3.0
Losetta 0.8、0.9、0.10

次の例では、実行中のインタプリタの名前を取得します。

AliceScript
using Alice.Interpreter;

var ns = interpreter_name();