code-languages 1.13.0 → 1.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/dist/api.cjs +168 -0
- package/dist/api.cjs.map +1 -1
- package/dist/api.d.cts +108 -0
- package/dist/api.d.ts +108 -0
- package/dist/api.js +168 -0
- package/dist/api.js.map +1 -1
- package/dist/detect.cjs +120 -0
- package/dist/detect.cjs.map +1 -1
- package/dist/detect.js +120 -0
- package/dist/detect.js.map +1 -1
- package/dist/index.cjs +172 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +108 -0
- package/dist/index.d.ts +108 -0
- package/dist/index.js +173 -1
- package/dist/index.js.map +1 -1
- package/dist/languages/elixir.cjs +34 -0
- package/dist/languages/elixir.cjs.map +1 -0
- package/dist/languages/elixir.d.cts +29 -0
- package/dist/languages/elixir.d.ts +29 -0
- package/dist/languages/elixir.js +32 -0
- package/dist/languages/elixir.js.map +1 -0
- package/dist/languages/haskell.cjs +34 -0
- package/dist/languages/haskell.cjs.map +1 -0
- package/dist/languages/haskell.d.cts +29 -0
- package/dist/languages/haskell.d.ts +29 -0
- package/dist/languages/haskell.js +32 -0
- package/dist/languages/haskell.js.map +1 -0
- package/dist/languages/jupyter-notebook.cjs +34 -0
- package/dist/languages/jupyter-notebook.cjs.map +1 -0
- package/dist/languages/jupyter-notebook.d.cts +29 -0
- package/dist/languages/jupyter-notebook.d.ts +29 -0
- package/dist/languages/jupyter-notebook.js +32 -0
- package/dist/languages/jupyter-notebook.js.map +1 -0
- package/dist/languages/ocaml.cjs +34 -0
- package/dist/languages/ocaml.cjs.map +1 -0
- package/dist/languages/ocaml.d.cts +29 -0
- package/dist/languages/ocaml.d.ts +29 -0
- package/dist/languages/ocaml.js +32 -0
- package/dist/languages/ocaml.js.map +1 -0
- package/package.json +21 -1
package/dist/api.d.cts
CHANGED
|
@@ -477,6 +477,33 @@ declare const languageLoaders: {
|
|
|
477
477
|
};
|
|
478
478
|
};
|
|
479
479
|
}>;
|
|
480
|
+
readonly elixir: () => Promise<Language | {
|
|
481
|
+
slug: string;
|
|
482
|
+
publishedDate: string;
|
|
483
|
+
extensions: string[];
|
|
484
|
+
author: string;
|
|
485
|
+
website: string;
|
|
486
|
+
paradigms: string[];
|
|
487
|
+
tooling: {
|
|
488
|
+
runtimes: string[];
|
|
489
|
+
packageManagers: string[];
|
|
490
|
+
ecosystems: string[];
|
|
491
|
+
};
|
|
492
|
+
version: string;
|
|
493
|
+
logo: string;
|
|
494
|
+
i18n: {
|
|
495
|
+
en: {
|
|
496
|
+
name: string;
|
|
497
|
+
description: string;
|
|
498
|
+
longDescription: string;
|
|
499
|
+
};
|
|
500
|
+
es: {
|
|
501
|
+
name: string;
|
|
502
|
+
description: string;
|
|
503
|
+
longDescription: string;
|
|
504
|
+
};
|
|
505
|
+
};
|
|
506
|
+
}>;
|
|
480
507
|
readonly elm: () => Promise<Language | {
|
|
481
508
|
slug: string;
|
|
482
509
|
publishedDate: string;
|
|
@@ -746,6 +773,33 @@ declare const languageLoaders: {
|
|
|
746
773
|
};
|
|
747
774
|
};
|
|
748
775
|
}>;
|
|
776
|
+
readonly haskell: () => Promise<Language | {
|
|
777
|
+
slug: string;
|
|
778
|
+
publishedDate: string;
|
|
779
|
+
extensions: string[];
|
|
780
|
+
author: string;
|
|
781
|
+
website: string;
|
|
782
|
+
paradigms: string[];
|
|
783
|
+
tooling: {
|
|
784
|
+
runtimes: string[];
|
|
785
|
+
packageManagers: string[];
|
|
786
|
+
ecosystems: string[];
|
|
787
|
+
};
|
|
788
|
+
version: string;
|
|
789
|
+
logo: string;
|
|
790
|
+
i18n: {
|
|
791
|
+
en: {
|
|
792
|
+
name: string;
|
|
793
|
+
description: string;
|
|
794
|
+
longDescription: string;
|
|
795
|
+
};
|
|
796
|
+
es: {
|
|
797
|
+
name: string;
|
|
798
|
+
description: string;
|
|
799
|
+
longDescription: string;
|
|
800
|
+
};
|
|
801
|
+
};
|
|
802
|
+
}>;
|
|
749
803
|
readonly hcl: () => Promise<Language | {
|
|
750
804
|
slug: string;
|
|
751
805
|
publishedDate: string;
|
|
@@ -896,6 +950,33 @@ declare const languageLoaders: {
|
|
|
896
950
|
};
|
|
897
951
|
};
|
|
898
952
|
}>;
|
|
953
|
+
readonly "jupyter-notebook": () => Promise<Language | {
|
|
954
|
+
slug: string;
|
|
955
|
+
publishedDate: string;
|
|
956
|
+
extensions: string[];
|
|
957
|
+
author: string;
|
|
958
|
+
website: string;
|
|
959
|
+
paradigms: string[];
|
|
960
|
+
tooling: {
|
|
961
|
+
runtimes: string[];
|
|
962
|
+
packageManagers: string[];
|
|
963
|
+
ecosystems: string[];
|
|
964
|
+
};
|
|
965
|
+
version: string;
|
|
966
|
+
logo: string;
|
|
967
|
+
i18n: {
|
|
968
|
+
en: {
|
|
969
|
+
name: string;
|
|
970
|
+
description: string;
|
|
971
|
+
longDescription: string;
|
|
972
|
+
};
|
|
973
|
+
es: {
|
|
974
|
+
name: string;
|
|
975
|
+
description: string;
|
|
976
|
+
longDescription: string;
|
|
977
|
+
};
|
|
978
|
+
};
|
|
979
|
+
}>;
|
|
899
980
|
readonly julia: () => Promise<Language | {
|
|
900
981
|
slug: string;
|
|
901
982
|
publishedDate: string;
|
|
@@ -1238,6 +1319,33 @@ declare const languageLoaders: {
|
|
|
1238
1319
|
};
|
|
1239
1320
|
};
|
|
1240
1321
|
}>;
|
|
1322
|
+
readonly ocaml: () => Promise<Language | {
|
|
1323
|
+
slug: string;
|
|
1324
|
+
publishedDate: string;
|
|
1325
|
+
extensions: string[];
|
|
1326
|
+
author: string;
|
|
1327
|
+
website: string;
|
|
1328
|
+
paradigms: string[];
|
|
1329
|
+
tooling: {
|
|
1330
|
+
runtimes: string[];
|
|
1331
|
+
packageManagers: string[];
|
|
1332
|
+
ecosystems: string[];
|
|
1333
|
+
};
|
|
1334
|
+
version: string;
|
|
1335
|
+
logo: string;
|
|
1336
|
+
i18n: {
|
|
1337
|
+
en: {
|
|
1338
|
+
name: string;
|
|
1339
|
+
description: string;
|
|
1340
|
+
longDescription: string;
|
|
1341
|
+
};
|
|
1342
|
+
es: {
|
|
1343
|
+
name: string;
|
|
1344
|
+
description: string;
|
|
1345
|
+
longDescription: string;
|
|
1346
|
+
};
|
|
1347
|
+
};
|
|
1348
|
+
}>;
|
|
1241
1349
|
readonly "objective-c": () => Promise<Language | {
|
|
1242
1350
|
slug: string;
|
|
1243
1351
|
publishedDate: string;
|
package/dist/api.d.ts
CHANGED
|
@@ -477,6 +477,33 @@ declare const languageLoaders: {
|
|
|
477
477
|
};
|
|
478
478
|
};
|
|
479
479
|
}>;
|
|
480
|
+
readonly elixir: () => Promise<Language | {
|
|
481
|
+
slug: string;
|
|
482
|
+
publishedDate: string;
|
|
483
|
+
extensions: string[];
|
|
484
|
+
author: string;
|
|
485
|
+
website: string;
|
|
486
|
+
paradigms: string[];
|
|
487
|
+
tooling: {
|
|
488
|
+
runtimes: string[];
|
|
489
|
+
packageManagers: string[];
|
|
490
|
+
ecosystems: string[];
|
|
491
|
+
};
|
|
492
|
+
version: string;
|
|
493
|
+
logo: string;
|
|
494
|
+
i18n: {
|
|
495
|
+
en: {
|
|
496
|
+
name: string;
|
|
497
|
+
description: string;
|
|
498
|
+
longDescription: string;
|
|
499
|
+
};
|
|
500
|
+
es: {
|
|
501
|
+
name: string;
|
|
502
|
+
description: string;
|
|
503
|
+
longDescription: string;
|
|
504
|
+
};
|
|
505
|
+
};
|
|
506
|
+
}>;
|
|
480
507
|
readonly elm: () => Promise<Language | {
|
|
481
508
|
slug: string;
|
|
482
509
|
publishedDate: string;
|
|
@@ -746,6 +773,33 @@ declare const languageLoaders: {
|
|
|
746
773
|
};
|
|
747
774
|
};
|
|
748
775
|
}>;
|
|
776
|
+
readonly haskell: () => Promise<Language | {
|
|
777
|
+
slug: string;
|
|
778
|
+
publishedDate: string;
|
|
779
|
+
extensions: string[];
|
|
780
|
+
author: string;
|
|
781
|
+
website: string;
|
|
782
|
+
paradigms: string[];
|
|
783
|
+
tooling: {
|
|
784
|
+
runtimes: string[];
|
|
785
|
+
packageManagers: string[];
|
|
786
|
+
ecosystems: string[];
|
|
787
|
+
};
|
|
788
|
+
version: string;
|
|
789
|
+
logo: string;
|
|
790
|
+
i18n: {
|
|
791
|
+
en: {
|
|
792
|
+
name: string;
|
|
793
|
+
description: string;
|
|
794
|
+
longDescription: string;
|
|
795
|
+
};
|
|
796
|
+
es: {
|
|
797
|
+
name: string;
|
|
798
|
+
description: string;
|
|
799
|
+
longDescription: string;
|
|
800
|
+
};
|
|
801
|
+
};
|
|
802
|
+
}>;
|
|
749
803
|
readonly hcl: () => Promise<Language | {
|
|
750
804
|
slug: string;
|
|
751
805
|
publishedDate: string;
|
|
@@ -896,6 +950,33 @@ declare const languageLoaders: {
|
|
|
896
950
|
};
|
|
897
951
|
};
|
|
898
952
|
}>;
|
|
953
|
+
readonly "jupyter-notebook": () => Promise<Language | {
|
|
954
|
+
slug: string;
|
|
955
|
+
publishedDate: string;
|
|
956
|
+
extensions: string[];
|
|
957
|
+
author: string;
|
|
958
|
+
website: string;
|
|
959
|
+
paradigms: string[];
|
|
960
|
+
tooling: {
|
|
961
|
+
runtimes: string[];
|
|
962
|
+
packageManagers: string[];
|
|
963
|
+
ecosystems: string[];
|
|
964
|
+
};
|
|
965
|
+
version: string;
|
|
966
|
+
logo: string;
|
|
967
|
+
i18n: {
|
|
968
|
+
en: {
|
|
969
|
+
name: string;
|
|
970
|
+
description: string;
|
|
971
|
+
longDescription: string;
|
|
972
|
+
};
|
|
973
|
+
es: {
|
|
974
|
+
name: string;
|
|
975
|
+
description: string;
|
|
976
|
+
longDescription: string;
|
|
977
|
+
};
|
|
978
|
+
};
|
|
979
|
+
}>;
|
|
899
980
|
readonly julia: () => Promise<Language | {
|
|
900
981
|
slug: string;
|
|
901
982
|
publishedDate: string;
|
|
@@ -1238,6 +1319,33 @@ declare const languageLoaders: {
|
|
|
1238
1319
|
};
|
|
1239
1320
|
};
|
|
1240
1321
|
}>;
|
|
1322
|
+
readonly ocaml: () => Promise<Language | {
|
|
1323
|
+
slug: string;
|
|
1324
|
+
publishedDate: string;
|
|
1325
|
+
extensions: string[];
|
|
1326
|
+
author: string;
|
|
1327
|
+
website: string;
|
|
1328
|
+
paradigms: string[];
|
|
1329
|
+
tooling: {
|
|
1330
|
+
runtimes: string[];
|
|
1331
|
+
packageManagers: string[];
|
|
1332
|
+
ecosystems: string[];
|
|
1333
|
+
};
|
|
1334
|
+
version: string;
|
|
1335
|
+
logo: string;
|
|
1336
|
+
i18n: {
|
|
1337
|
+
en: {
|
|
1338
|
+
name: string;
|
|
1339
|
+
description: string;
|
|
1340
|
+
longDescription: string;
|
|
1341
|
+
};
|
|
1342
|
+
es: {
|
|
1343
|
+
name: string;
|
|
1344
|
+
description: string;
|
|
1345
|
+
longDescription: string;
|
|
1346
|
+
};
|
|
1347
|
+
};
|
|
1348
|
+
}>;
|
|
1241
1349
|
readonly "objective-c": () => Promise<Language | {
|
|
1242
1350
|
slug: string;
|
|
1243
1351
|
publishedDate: string;
|
package/dist/api.js
CHANGED
|
@@ -681,6 +681,44 @@ var init_dockerfile = __esm({
|
|
|
681
681
|
}
|
|
682
682
|
});
|
|
683
683
|
|
|
684
|
+
// src/languages/elixir.ts
|
|
685
|
+
var elixir_exports = {};
|
|
686
|
+
__export(elixir_exports, {
|
|
687
|
+
elixir: () => elixir
|
|
688
|
+
});
|
|
689
|
+
var elixir;
|
|
690
|
+
var init_elixir = __esm({
|
|
691
|
+
"src/languages/elixir.ts"() {
|
|
692
|
+
elixir = {
|
|
693
|
+
slug: "elixir",
|
|
694
|
+
publishedDate: "2012-05-25",
|
|
695
|
+
extensions: [".ex", ".exs", ".eex", ".leex", ".heex"],
|
|
696
|
+
author: "Jose Valim",
|
|
697
|
+
website: "https://elixir-lang.org",
|
|
698
|
+
paradigms: ["functional", "concurrent", "distributed", "metaprogramming"],
|
|
699
|
+
tooling: {
|
|
700
|
+
runtimes: ["BEAM", "Erlang/OTP"],
|
|
701
|
+
packageManagers: ["Mix", "Hex"],
|
|
702
|
+
ecosystems: ["Web", "Distributed Systems", "Fault-tolerant Systems", "Data Processing"]
|
|
703
|
+
},
|
|
704
|
+
version: "1.19.5",
|
|
705
|
+
logo: "https://cdn.simpleicons.org/elixir/4B275F",
|
|
706
|
+
i18n: {
|
|
707
|
+
en: {
|
|
708
|
+
name: "Elixir",
|
|
709
|
+
description: "A dynamic functional language for scalable, maintainable, and fault-tolerant systems.",
|
|
710
|
+
longDescription: "Elixir runs on the BEAM virtual machine and combines functional programming, lightweight processes, message passing, pattern matching, macros, and OTP libraries for building concurrent and distributed software.\n\nIt is widely used for web applications with Phoenix, real-time systems, background jobs, data pipelines, embedded systems, and services that need resilience, observability, and high concurrency."
|
|
711
|
+
},
|
|
712
|
+
es: {
|
|
713
|
+
name: "Elixir",
|
|
714
|
+
description: "Un lenguaje funcional dinamico para sistemas escalables, mantenibles y tolerantes a fallos.",
|
|
715
|
+
longDescription: "Elixir corre sobre la maquina virtual BEAM y combina programacion funcional, procesos ligeros, paso de mensajes, pattern matching, macros y librerias OTP para construir software concurrente y distribuido.\n\nSe usa ampliamente en aplicaciones web con Phoenix, sistemas en tiempo real, trabajos en segundo plano, pipelines de datos, sistemas embebidos y servicios que necesitan resiliencia, observabilidad y alta concurrencia."
|
|
716
|
+
}
|
|
717
|
+
}
|
|
718
|
+
};
|
|
719
|
+
}
|
|
720
|
+
});
|
|
721
|
+
|
|
684
722
|
// src/languages/elm.ts
|
|
685
723
|
var elm_exports = {};
|
|
686
724
|
__export(elm_exports, {
|
|
@@ -1060,6 +1098,44 @@ var init_groovy = __esm({
|
|
|
1060
1098
|
}
|
|
1061
1099
|
});
|
|
1062
1100
|
|
|
1101
|
+
// src/languages/haskell.ts
|
|
1102
|
+
var haskell_exports = {};
|
|
1103
|
+
__export(haskell_exports, {
|
|
1104
|
+
haskell: () => haskell
|
|
1105
|
+
});
|
|
1106
|
+
var haskell;
|
|
1107
|
+
var init_haskell = __esm({
|
|
1108
|
+
"src/languages/haskell.ts"() {
|
|
1109
|
+
haskell = {
|
|
1110
|
+
slug: "haskell",
|
|
1111
|
+
publishedDate: "1990-04-01",
|
|
1112
|
+
extensions: [".hs", ".lhs", ".hsc", ".hs-boot", ".hsig", ".cabal"],
|
|
1113
|
+
author: "Haskell Committee",
|
|
1114
|
+
website: "https://www.haskell.org",
|
|
1115
|
+
paradigms: ["functional", "declarative", "lazy evaluation", "statically typed"],
|
|
1116
|
+
tooling: {
|
|
1117
|
+
runtimes: ["GHC", "GHCi"],
|
|
1118
|
+
packageManagers: ["Cabal", "Stack", "GHCup"],
|
|
1119
|
+
ecosystems: ["Functional Programming", "Compilers", "Research", "Financial Systems"]
|
|
1120
|
+
},
|
|
1121
|
+
version: "GHC 9.14.1",
|
|
1122
|
+
logo: "https://cdn.simpleicons.org/haskell/5D4F85",
|
|
1123
|
+
i18n: {
|
|
1124
|
+
en: {
|
|
1125
|
+
name: "Haskell",
|
|
1126
|
+
description: "A lazy, purely functional language with strong static typing and expressive abstractions.",
|
|
1127
|
+
longDescription: "Haskell is a general-purpose functional programming language known for purity, lazy evaluation, algebraic data types, type classes, pattern matching, and a powerful static type system. The Haskell 2010 language standard is widely supported, while GHC adds many commonly used extensions.\n\nIt is used in compiler construction, programming language research, financial systems, formal methods, data processing, education, and production services that benefit from strong types and high-level abstractions."
|
|
1128
|
+
},
|
|
1129
|
+
es: {
|
|
1130
|
+
name: "Haskell",
|
|
1131
|
+
description: "Un lenguaje puramente funcional y lazy con tipado estatico fuerte y abstracciones expresivas.",
|
|
1132
|
+
longDescription: "Haskell es un lenguaje de programacion funcional de proposito general conocido por pureza, evaluacion lazy, tipos algebraicos, type classes, pattern matching y un sistema de tipos estatico potente. El estandar Haskell 2010 tiene amplio soporte, mientras GHC agrega muchas extensiones de uso comun.\n\nSe usa en construccion de compiladores, investigacion en lenguajes de programacion, sistemas financieros, metodos formales, procesamiento de datos, educacion y servicios de produccion que se benefician de tipos fuertes y abstracciones de alto nivel."
|
|
1133
|
+
}
|
|
1134
|
+
}
|
|
1135
|
+
};
|
|
1136
|
+
}
|
|
1137
|
+
});
|
|
1138
|
+
|
|
1063
1139
|
// src/languages/hcl.ts
|
|
1064
1140
|
var hcl_exports = {};
|
|
1065
1141
|
__export(hcl_exports, {
|
|
@@ -1314,6 +1390,44 @@ var init_julia = __esm({
|
|
|
1314
1390
|
}
|
|
1315
1391
|
});
|
|
1316
1392
|
|
|
1393
|
+
// src/languages/jupyter-notebook.ts
|
|
1394
|
+
var jupyter_notebook_exports = {};
|
|
1395
|
+
__export(jupyter_notebook_exports, {
|
|
1396
|
+
jupyterNotebook: () => jupyterNotebook
|
|
1397
|
+
});
|
|
1398
|
+
var jupyterNotebook;
|
|
1399
|
+
var init_jupyter_notebook = __esm({
|
|
1400
|
+
"src/languages/jupyter-notebook.ts"() {
|
|
1401
|
+
jupyterNotebook = {
|
|
1402
|
+
slug: "jupyter-notebook",
|
|
1403
|
+
publishedDate: "2011-12-21",
|
|
1404
|
+
extensions: [".ipynb"],
|
|
1405
|
+
author: "Project Jupyter",
|
|
1406
|
+
website: "https://jupyter.org",
|
|
1407
|
+
paradigms: ["literate programming", "interactive computing", "data serialization", "markup"],
|
|
1408
|
+
tooling: {
|
|
1409
|
+
runtimes: ["Jupyter Notebook", "JupyterLab", "VS Code"],
|
|
1410
|
+
packageManagers: ["pip", "conda", "mamba"],
|
|
1411
|
+
ecosystems: ["Data Science", "Machine Learning", "Scientific Computing", "Education"]
|
|
1412
|
+
},
|
|
1413
|
+
version: "nbformat 4.5",
|
|
1414
|
+
logo: "https://cdn.simpleicons.org/jupyter/F37626",
|
|
1415
|
+
i18n: {
|
|
1416
|
+
en: {
|
|
1417
|
+
name: "Jupyter Notebook",
|
|
1418
|
+
description: "A JSON-based notebook format for combining live code, narrative text, outputs, and media.",
|
|
1419
|
+
longDescription: "Jupyter Notebook files store executable code cells, Markdown narrative, rich outputs, metadata, and kernel information in a JSON document with the .ipynb extension.\n\nThey are widely used for data analysis, machine learning experiments, scientific computing, education, tutorials, reports, and reproducible computational workflows."
|
|
1420
|
+
},
|
|
1421
|
+
es: {
|
|
1422
|
+
name: "Jupyter Notebook",
|
|
1423
|
+
description: "Un formato de notebook basado en JSON para combinar codigo vivo, texto, salidas y medios.",
|
|
1424
|
+
longDescription: "Los archivos Jupyter Notebook guardan celdas de codigo ejecutable, narrativa en Markdown, salidas enriquecidas, metadatos e informacion del kernel en un documento JSON con extension .ipynb.\n\nSe usan ampliamente en analisis de datos, experimentos de machine learning, computacion cientifica, educacion, tutoriales, reportes y flujos computacionales reproducibles."
|
|
1425
|
+
}
|
|
1426
|
+
}
|
|
1427
|
+
};
|
|
1428
|
+
}
|
|
1429
|
+
});
|
|
1430
|
+
|
|
1317
1431
|
// src/languages/kotlin.ts
|
|
1318
1432
|
var kotlin_exports = {};
|
|
1319
1433
|
__export(kotlin_exports, {
|
|
@@ -1762,6 +1876,44 @@ var init_objective_c = __esm({
|
|
|
1762
1876
|
}
|
|
1763
1877
|
});
|
|
1764
1878
|
|
|
1879
|
+
// src/languages/ocaml.ts
|
|
1880
|
+
var ocaml_exports = {};
|
|
1881
|
+
__export(ocaml_exports, {
|
|
1882
|
+
ocaml: () => ocaml
|
|
1883
|
+
});
|
|
1884
|
+
var ocaml;
|
|
1885
|
+
var init_ocaml = __esm({
|
|
1886
|
+
"src/languages/ocaml.ts"() {
|
|
1887
|
+
ocaml = {
|
|
1888
|
+
slug: "ocaml",
|
|
1889
|
+
publishedDate: "1996-01-01",
|
|
1890
|
+
extensions: [".ml", ".mli", ".mll", ".mly", ".mlt", ".eliom", ".eliomi"],
|
|
1891
|
+
author: "Xavier Leroy, Jerome Vouillon, Damien Doligez, Didier Remy, Ascander Suarez",
|
|
1892
|
+
website: "https://ocaml.org",
|
|
1893
|
+
paradigms: ["functional", "imperative", "object-oriented", "modular"],
|
|
1894
|
+
tooling: {
|
|
1895
|
+
runtimes: ["OCaml Runtime", "Native Code Compiler", "Bytecode Interpreter"],
|
|
1896
|
+
packageManagers: ["opam", "Dune"],
|
|
1897
|
+
ecosystems: ["Compilers", "Formal Methods", "Systems Programming", "Web"]
|
|
1898
|
+
},
|
|
1899
|
+
version: "5.6.0",
|
|
1900
|
+
logo: "https://cdn.simpleicons.org/ocaml/EC6813",
|
|
1901
|
+
i18n: {
|
|
1902
|
+
en: {
|
|
1903
|
+
name: "OCaml",
|
|
1904
|
+
description: "A statically typed ML-family language with modules, inference, and native compilation.",
|
|
1905
|
+
longDescription: "OCaml combines functional, imperative, and object-oriented programming with Hindley-Milner type inference, algebraic data types, pattern matching, functors, and a powerful module system.\n\nIt is used for compilers, theorem provers, static analysis, developer tools, financial systems, systems software, and production services where strong types, performance, and maintainability matter."
|
|
1906
|
+
},
|
|
1907
|
+
es: {
|
|
1908
|
+
name: "OCaml",
|
|
1909
|
+
description: "Un lenguaje de la familia ML con tipado estatico, modulos, inferencia y compilacion nativa.",
|
|
1910
|
+
longDescription: "OCaml combina programacion funcional, imperativa y orientada a objetos con inferencia de tipos Hindley-Milner, tipos algebraicos, pattern matching, functors y un sistema de modulos potente.\n\nSe usa en compiladores, demostradores de teoremas, analisis estatico, herramientas de desarrollo, sistemas financieros, software de sistemas y servicios de produccion donde importan los tipos fuertes, el rendimiento y la mantenibilidad."
|
|
1911
|
+
}
|
|
1912
|
+
}
|
|
1913
|
+
};
|
|
1914
|
+
}
|
|
1915
|
+
});
|
|
1916
|
+
|
|
1765
1917
|
// src/languages/pascal.ts
|
|
1766
1918
|
var pascal_exports = {};
|
|
1767
1919
|
__export(pascal_exports, {
|
|
@@ -2822,6 +2974,7 @@ init_css();
|
|
|
2822
2974
|
init_cuda();
|
|
2823
2975
|
init_dart();
|
|
2824
2976
|
init_dockerfile();
|
|
2977
|
+
init_elixir();
|
|
2825
2978
|
init_elm();
|
|
2826
2979
|
init_erlang();
|
|
2827
2980
|
init_fortran();
|
|
@@ -2832,6 +2985,7 @@ init_go();
|
|
|
2832
2985
|
init_gradle();
|
|
2833
2986
|
init_graphql();
|
|
2834
2987
|
init_groovy();
|
|
2988
|
+
init_haskell();
|
|
2835
2989
|
init_hcl();
|
|
2836
2990
|
init_html();
|
|
2837
2991
|
init_ini();
|
|
@@ -2839,6 +2993,7 @@ init_java();
|
|
|
2839
2993
|
init_javascript();
|
|
2840
2994
|
init_json();
|
|
2841
2995
|
init_julia();
|
|
2996
|
+
init_jupyter_notebook();
|
|
2842
2997
|
init_kotlin();
|
|
2843
2998
|
init_less();
|
|
2844
2999
|
init_lisp();
|
|
@@ -2851,6 +3006,7 @@ init_metal();
|
|
|
2851
3006
|
init_nginx();
|
|
2852
3007
|
init_nix();
|
|
2853
3008
|
init_objective_c();
|
|
3009
|
+
init_ocaml();
|
|
2854
3010
|
init_pascal();
|
|
2855
3011
|
init_perl();
|
|
2856
3012
|
init_php();
|
|
@@ -2898,6 +3054,7 @@ var languages = [
|
|
|
2898
3054
|
cuda,
|
|
2899
3055
|
dart,
|
|
2900
3056
|
dockerfile,
|
|
3057
|
+
elixir,
|
|
2901
3058
|
elm,
|
|
2902
3059
|
erlang,
|
|
2903
3060
|
fortran,
|
|
@@ -2908,12 +3065,14 @@ var languages = [
|
|
|
2908
3065
|
glsl,
|
|
2909
3066
|
graphql,
|
|
2910
3067
|
groovy,
|
|
3068
|
+
haskell,
|
|
2911
3069
|
hcl,
|
|
2912
3070
|
html,
|
|
2913
3071
|
ini,
|
|
2914
3072
|
java,
|
|
2915
3073
|
javascript,
|
|
2916
3074
|
json,
|
|
3075
|
+
jupyterNotebook,
|
|
2917
3076
|
julia,
|
|
2918
3077
|
kotlin,
|
|
2919
3078
|
less,
|
|
@@ -2927,6 +3086,7 @@ var languages = [
|
|
|
2927
3086
|
svn,
|
|
2928
3087
|
nginx,
|
|
2929
3088
|
nix,
|
|
3089
|
+
ocaml,
|
|
2930
3090
|
objectiveC,
|
|
2931
3091
|
pascal,
|
|
2932
3092
|
perl,
|
|
@@ -3032,6 +3192,7 @@ var languageIndex = [
|
|
|
3032
3192
|
{ slug: "cuda", extensions: [".cu", ".cuh"] },
|
|
3033
3193
|
{ slug: "dart", extensions: [".dart"] },
|
|
3034
3194
|
{ slug: "dockerfile", extensions: ["Dockerfile", ".dockerfile"] },
|
|
3195
|
+
{ slug: "elixir", extensions: [".ex", ".exs", ".eex", ".leex", ".heex"] },
|
|
3035
3196
|
{ slug: "elm", extensions: [".elm"] },
|
|
3036
3197
|
{
|
|
3037
3198
|
slug: "erlang",
|
|
@@ -3051,12 +3212,14 @@ var languageIndex = [
|
|
|
3051
3212
|
},
|
|
3052
3213
|
{ slug: "graphql", extensions: [".graphql", ".gql", ".graphqls"] },
|
|
3053
3214
|
{ slug: "groovy", extensions: [".groovy", ".gvy", ".gy", ".gsh"] },
|
|
3215
|
+
{ slug: "haskell", extensions: [".hs", ".lhs", ".hsc", ".hs-boot", ".hsig", ".cabal"] },
|
|
3054
3216
|
{ slug: "hcl", extensions: [".hcl", ".tf", ".tfvars", ".pkr.hcl", ".nomad"] },
|
|
3055
3217
|
{ slug: "html", extensions: [".html", ".htm"] },
|
|
3056
3218
|
{ slug: "ini", extensions: [".ini"] },
|
|
3057
3219
|
{ slug: "java", extensions: [".java"] },
|
|
3058
3220
|
{ slug: "javascript", extensions: [".js", ".mjs", ".cjs", ".jsx"] },
|
|
3059
3221
|
{ slug: "json", extensions: [".json"] },
|
|
3222
|
+
{ slug: "jupyter-notebook", extensions: [".ipynb"] },
|
|
3060
3223
|
{ slug: "julia", extensions: [".jl"] },
|
|
3061
3224
|
{ slug: "kotlin", extensions: [".kt", ".kts"] },
|
|
3062
3225
|
{ slug: "less", extensions: [".less"] },
|
|
@@ -3070,6 +3233,7 @@ var languageIndex = [
|
|
|
3070
3233
|
{ slug: "svn", extensions: [".svn", "svnserve.conf"] },
|
|
3071
3234
|
{ slug: "nginx", extensions: ["nginx.conf", ".nginx", ".conf"] },
|
|
3072
3235
|
{ slug: "nix", extensions: [".nix"] },
|
|
3236
|
+
{ slug: "ocaml", extensions: [".ml", ".mli", ".mll", ".mly", ".mlt", ".eliom", ".eliomi"] },
|
|
3073
3237
|
{ slug: "objective-c", extensions: [".m", ".mm"] },
|
|
3074
3238
|
{ slug: "pascal", extensions: [".pas", ".pp", ".inc", ".lpr", ".dpr", ".dfm"] },
|
|
3075
3239
|
{ slug: "perl", extensions: [".pl", ".pm", ".pod", ".t", ".psgi"] },
|
|
@@ -3124,6 +3288,7 @@ var languageLoaders = {
|
|
|
3124
3288
|
cuda: () => Promise.resolve().then(() => (init_cuda(), cuda_exports)).then((module) => module.cuda),
|
|
3125
3289
|
dart: () => Promise.resolve().then(() => (init_dart(), dart_exports)).then((module) => module.dart),
|
|
3126
3290
|
dockerfile: () => Promise.resolve().then(() => (init_dockerfile(), dockerfile_exports)).then((module) => module.dockerfile),
|
|
3291
|
+
elixir: () => Promise.resolve().then(() => (init_elixir(), elixir_exports)).then((module) => module.elixir),
|
|
3127
3292
|
elm: () => Promise.resolve().then(() => (init_elm(), elm_exports)).then((module) => module.elm),
|
|
3128
3293
|
erlang: () => Promise.resolve().then(() => (init_erlang(), erlang_exports)).then((module) => module.erlang),
|
|
3129
3294
|
fortran: () => Promise.resolve().then(() => (init_fortran(), fortran_exports)).then((module) => module.fortran),
|
|
@@ -3134,12 +3299,14 @@ var languageLoaders = {
|
|
|
3134
3299
|
glsl: () => Promise.resolve().then(() => (init_glsl(), glsl_exports)).then((module) => module.glsl),
|
|
3135
3300
|
graphql: () => Promise.resolve().then(() => (init_graphql(), graphql_exports)).then((module) => module.graphql),
|
|
3136
3301
|
groovy: () => Promise.resolve().then(() => (init_groovy(), groovy_exports)).then((module) => module.groovy),
|
|
3302
|
+
haskell: () => Promise.resolve().then(() => (init_haskell(), haskell_exports)).then((module) => module.haskell),
|
|
3137
3303
|
hcl: () => Promise.resolve().then(() => (init_hcl(), hcl_exports)).then((module) => module.hcl),
|
|
3138
3304
|
html: () => Promise.resolve().then(() => (init_html(), html_exports)).then((module) => module.html),
|
|
3139
3305
|
ini: () => Promise.resolve().then(() => (init_ini(), ini_exports)).then((module) => module.ini),
|
|
3140
3306
|
java: () => Promise.resolve().then(() => (init_java(), java_exports)).then((module) => module.java),
|
|
3141
3307
|
javascript: () => Promise.resolve().then(() => (init_javascript(), javascript_exports)).then((module) => module.javascript),
|
|
3142
3308
|
json: () => Promise.resolve().then(() => (init_json(), json_exports)).then((module) => module.json),
|
|
3309
|
+
"jupyter-notebook": () => Promise.resolve().then(() => (init_jupyter_notebook(), jupyter_notebook_exports)).then((module) => module.jupyterNotebook),
|
|
3143
3310
|
julia: () => Promise.resolve().then(() => (init_julia(), julia_exports)).then((module) => module.julia),
|
|
3144
3311
|
kotlin: () => Promise.resolve().then(() => (init_kotlin(), kotlin_exports)).then((module) => module.kotlin),
|
|
3145
3312
|
less: () => Promise.resolve().then(() => (init_less(), less_exports)).then((module) => module.less),
|
|
@@ -3153,6 +3320,7 @@ var languageLoaders = {
|
|
|
3153
3320
|
svn: () => Promise.resolve().then(() => (init_svn(), svn_exports)).then((module) => module.svn),
|
|
3154
3321
|
nginx: () => Promise.resolve().then(() => (init_nginx(), nginx_exports)).then((module) => module.nginx),
|
|
3155
3322
|
nix: () => Promise.resolve().then(() => (init_nix(), nix_exports)).then((module) => module.nix),
|
|
3323
|
+
ocaml: () => Promise.resolve().then(() => (init_ocaml(), ocaml_exports)).then((module) => module.ocaml),
|
|
3156
3324
|
"objective-c": () => Promise.resolve().then(() => (init_objective_c(), objective_c_exports)).then((module) => module.objectiveC),
|
|
3157
3325
|
pascal: () => Promise.resolve().then(() => (init_pascal(), pascal_exports)).then((module) => module.pascal),
|
|
3158
3326
|
perl: () => Promise.resolve().then(() => (init_perl(), perl_exports)).then((module) => module.perl),
|