这是什么语言?

本文关键字:语言 是什么 | 更新日期: 2023-09-27 18:13:47

我收到一段代码,但我不知道它是什么语言。它看起来像c#,但c#使用"using"子句来导入库,而在这个编程语言文件中,它使用"use"子句。我找不到任何关于"使用"子句的信息,我实际上很困惑,因为这种编程语言看起来像c#/Java/Visual Basic,但在这些语言上,我找不到"使用"子句的使用。奇怪的是,代码没有使用任何方法,而我收到的文件扩展名为.txt。

文件开始如下:

use Collection, File, Stream, String, System;
use Date;
include globals.routines.global_routines_generic;
include globals.routines.global_routines_mcc;
include globals.routines.global_classifier;

之后,他们用"var"子句声明了一堆变量,然后一部分代码看起来像这样:

File.createFolder(settings.path_files);
foreach(i, Folder in Folders) {
    if (dlc.allfolders || String.contains(Folder, dlc.specific_folder)) {
        Bestanden       = File.iterateFiles(Folder.path, true);
        stop_word_list  = load_stop_words();
        foreach(j, Bestand in Bestanden) {
            if (rerun) {
                if (!String.contains(Bestand, "ONBEKEND")) {
                    continue ;
                }
            }
            writeAuditTrail     (logfile, String.join(["Processing file " , Bestand]), 0, savelog);
folder_items        = String.split(Bestand, "''''", false);
        last_folder_name    = folder_items[Collection.length(folder_items)-2];
        dossier_tab         = get_dossier_tab(folder_items[Collection.length(folder_items)-1], dlc);
        possible_docs       = dlc.HR_dossier_tabs[dossier_tab];

有人知道这是什么语言吗?

提前感谢

这是什么语言?

代码最接近c++。它肯定不是java,因为java没有foreach循环,use关键字和var,也可能不是c#,因为库包含语法。它可能是低级伪代码,但不太可能,因为语法非常接近基于C的语言。此处输入链接描述