-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanguages.json
More file actions
712 lines (712 loc) · 18 KB
/
languages.json
File metadata and controls
712 lines (712 loc) · 18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
[
{
"name": "Ada",
"description": "General-purpose, strongly typed language",
"path": "hello-word/hello.adb"
},
{
"name": "Ada (Script)",
"description": "Ada for scripting purposes",
"path": "hello-word/hello.ads"
},
{
"name": "ActionScript",
"description": "Object-oriented language for Adobe Flash and AIR",
"path": "hello-word/hello.as"
},
{
"name": "ALGOL 68",
"description": "High-level imperative programming language",
"path": "hello-word/hello.a68"
},
{
"name": "APL",
"description": "Array-oriented programming language",
"path": "hello-word/hello.apl"
},
{
"name": "AppleScript",
"description": "Scripting language for macOS",
"path": "hello-word/hello.applescript"
},
{
"name": "Arc",
"description": "Lisp dialect for web applications",
"path": "hello-word/hello.arc"
},
{
"name": "Assembly",
"description": "Low-level language for direct hardware control",
"path": "hello-word/hello.asm"
},
{
"name": "Assembly (ARM)",
"description": "Low-level language for ARM processors",
"path": "hello-word/hello.s"
},
{
"name": "Assembly (x64)",
"description": "Low-level language for x64 processors",
"path": "hello-word/hello.asm64"
},
{
"name": "AutoHotkey",
"description": "Free, open-source macro-creation and automation software",
"path": "hello-word/hello.ahk"
},
{
"name": "AutoIt",
"description": "Freeware automation language for Windows GUI",
"path": "hello-word/hello.au3"
},
{
"name": "Awk",
"description": "Text processing language",
"path": "hello-word/hello.awk"
},
{
"name": "Ballerina",
"description": "Cloud-native programming language",
"path": "hello-word/hello.bal"
},
{
"name": "Bash",
"description": "Unix shell and command language",
"path": "hello-word/hello.sh"
},
{
"name": "BASIC",
"description": "Beginner's All-purpose Symbolic Instruction Code",
"path": "hello-word/hello.bas"
},
{
"name": "Batch (Windows)",
"description": "Scripting language for Windows command prompt",
"path": "hello-word/hello.bat"
},
{
"name": "BeanShell",
"description": "Lightweight Java scripting language",
"path": "hello-word/hello.bsh"
},
{
"name": "Boo",
"description": "Object-oriented, statically typed programming language for .NET",
"path": "hello-word/hello.boo"
},
{
"name": "Brainfuck",
"description": "Minimalistic esoteric programming language",
"path": "hello-word/hello.bf"
},
{
"name": "C",
"description": "General-purpose language for systems programming",
"path": "hello-word/hello.c"
},
{
"name": "C (Script)",
"description": "C for scripting purposes",
"path": "hello-word/hello.csh"
},
{
"name": "C--",
"description": "Simplified version of C with fewer features",
"path": "hello-word/hello.cm"
},
{
"name": "C#",
"description": "Modern, object-oriented language for .NET",
"path": "hello-word/hello.cs"
},
{
"name": "C# Script",
"description": "C# for scripting purposes",
"path": "hello-word/hello.csx"
},
{
"name": "C++",
"description": "Object-oriented extension of C",
"path": "hello-word/hello.cpp"
},
{
"name": "C++ (Script)",
"description": "C++ for scripting purposes",
"path": "hello-word/hello.cppsh"
},
{
"name": "Cach\u00e9 Basic",
"description": "BASIC dialect for Cach\u00e9 database",
"path": "hello-word/hello.cbas"
},
{
"name": "Cach\u00e9 MUMPS",
"description": "MUMPS dialect for Cach\u00e9 database",
"path": "hello-word/hello.cmumps"
},
{
"name": "Cach\u00e9 ObjectScript",
"description": "Object-oriented language for Cach\u00e9 database",
"path": "hello-word/hello.mac"
},
{
"name": "Cach\u00e9 ObjectScript (Class)",
"description": "ObjectScript for Cach\u00e9 classes",
"path": "hello-word/hello.cls"
},
{
"name": "Ceylon",
"description": "Object-oriented language for the JVM and JavaScript platforms",
"path": "hello-word/hello.ceylon"
},
{
"name": "Chapel",
"description": "Parallel programming language",
"path": "hello-word/hello.chpl"
},
{
"name": "CIL",
"description": "Common Intermediate Language",
"path": "hello-word/hello.il"
},
{
"name": "Clean",
"description": "Purely functional programming language",
"path": "hello-word/hello.icl"
},
{
"name": "Clojure",
"description": "Dialect of Lisp for JVM",
"path": "hello-word/hello.clj"
},
{
"name": "ClojureScript",
"description": "Clojure to JavaScript compiler",
"path": "hello-word/hello.cljs"
},
{
"name": "ClojureScript (Browser)",
"description": "ClojureScript for browsers",
"path": "hello-word/hello.cljs.browser"
},
{
"name": "ClojureScript (Node)",
"description": "ClojureScript for Node.js",
"path": "hello-word/hello.cljs.node"
},
{
"name": "COBOL",
"description": "Common Business-Oriented Language",
"path": "hello-word/hello.cbl"
},
{
"name": "COBOL (GnuCOBOL)",
"description": "COBOL for GnuCOBOL compiler",
"path": "hello-word/hello.cob"
},
{
"name": "CoffeeScript",
"description": "Transpiles into JavaScript",
"path": "hello-word/hello.coffee"
},
{
"name": "CoffeeScript (Literate)",
"description": "Literate programming for CoffeeScript",
"path": "hello-word/hello.litcoffee"
},
{
"name": "ColdFusion Markup",
"description": "Scripting language for web development",
"path": "hello-word/hello.cfm"
},
{
"name": "ColdFusion Script",
"description": "Scripting language for ColdFusion components",
"path": "hello-word/hello.cfc"
},
{
"name": "Common Lisp",
"description": "Multi-paradigm, dynamic programming language",
"path": "hello-word/hello.lisp"
},
{
"name": "Common Lisp (CLISP)",
"description": "Common Lisp implementation",
"path": "hello-word/hello.clisp"
},
{
"name": "Common Lisp (SBCL)",
"description": "SBCL implementation of Common Lisp",
"path": "hello-word/hello.sbcl"
},
{
"name": "Component Pascal",
"description": "Pascal dialect for component-based programming",
"path": "hello-word/hello.cp"
},
{
"name": "Component Pascal (BlackBox)",
"description": "Component Pascal for BlackBox Component Builder",
"path": "hello-word/hello.mod"
},
{
"name": "Crystal",
"description": "Ruby-like language that compiles to native code",
"path": "hello-word/hello.cr"
},
{
"name": "Curl",
"description": "Object-oriented, reflective programming language",
"path": "hello-word/hello.curl"
},
{
"name": "Cython",
"description": "Optimized Python with C extensions",
"path": "hello-word/hello.pyx"
},
{
"name": "D",
"description": "Multi-paradigm system programming language",
"path": "hello-word/hello.d"
},
{
"name": "Dart",
"description": "Client-optimized language for fast apps on any platform",
"path": "hello-word/hello.dart"
},
{
"name": "Datalog",
"description": "Declarative logic programming language",
"path": "hello-word/hello.dl"
},
{
"name": "Dylan",
"description": "Multi-paradigm functional and object-oriented language",
"path": "hello-word/hello.dylan"
},
{
"name": "Eiffel",
"description": "Object-oriented programming language",
"path": "hello-word/hello.e"
},
{
"name": "Elixir",
"description": "Functional language for web and distributed systems",
"path": "hello-word/hello.exs"
},
{
"name": "Elm",
"description": "Functional language for building web UIs",
"path": "hello-word/hello.elm"
},
{
"name": "Erlang",
"description": "Functional language for distributed systems",
"path": "hello-word/hello.erl"
},
{
"name": "Erlang (Script)",
"description": "Erlang for scripting purposes",
"path": "hello-word/hello.escript"
},
{
"name": "Factor",
"description": "Concatenative, stack-based programming language",
"path": "hello-word/hello.factor"
},
{
"name": "Forth",
"description": "Stack-based, imperative programming language",
"path": "hello-word/hello.fth"
},
{
"name": "Fortran",
"description": "High-performance language for scientific computing",
"path": "hello-word/hello.f90"
},
{
"name": "Fortran (Fixed)",
"description": "Fixed-form Fortran",
"path": "hello-word/hello.f"
},
{
"name": "F#",
"description": "Functional-first language on the .NET platform",
"path": "hello-word/hello.fs"
},
{
"name": "F# (Script)",
"description": "F# for scripting purposes",
"path": "hello-word/hello.fsx"
},
{
"name": "Gambas",
"description": "Object-oriented BASIC interpreter",
"path": "hello-word/hello.gambas"
},
{
"name": "Genie",
"description": "Modern, object-oriented programming language",
"path": "hello-word/hello.gs"
},
{
"name": "Go",
"description": "Statically typed language for network applications",
"path": "hello-word/hello.go"
},
{
"name": "Go (Script)",
"description": "Go for scripting purposes",
"path": "hello-word/hello_script.go"
},
{
"name": "Gosu",
"description": "JVM language with Ruby-like syntax",
"path": "hello-word/hello.gsp"
},
{
"name": "Groovy",
"description": "Dynamic language for the JVM",
"path": "hello-word/hello.groovy"
},
{
"name": "Hack",
"description": "PHP dialect for HHVM",
"path": "hello-word/hello.hh"
},
{
"name": "Haskell",
"description": "Pure functional programming language",
"path": "hello-word/hello.hs"
},
{
"name": "Haskell (Literate)",
"description": "Pure functional language for research (Literate Haskell)",
"path": "hello-word/hello.lhs"
},
{
"name": "Haxe",
"description": "Open source high-level programming language",
"path": "hello-word/hello.hx"
},
{
"name": "Holy C",
"description": "A dialect of C with additional features",
"path": "hello-word/hello.HC"
},
{
"name": "HTML",
"description": "Markup language for web pages",
"path": "hello-word/hello.html"
},
{
"name": "Icon",
"description": "High-level, general-purpose programming language",
"path": "hello-word/hello.icn"
},
{
"name": "Inform 7",
"description": "Programming language for interactive fiction",
"path": "hello-word/hello.ni"
},
{
"name": "Io",
"description": "Prototype-based programming language",
"path": "hello-word/hello.io"
},
{
"name": "J",
"description": "Array programming language",
"path": "hello-word/hello.ijs"
},
{
"name": "Java",
"description": "General-purpose language for applications and Android",
"path": "hello-word/hello.java"
},
{
"name": "JavaScript",
"description": "Language for interactive web pages",
"path": "hello-word/hello.js"
},
{
"name": "Julia",
"description": "High-level, high-performance language for technical computing",
"path": "hello-word/hello.jl"
},
{
"name": "K",
"description": "Array processing language",
"path": "hello-word/hello.k"
},
{
"name": "Kotlin",
"description": "Modern JVM language, Android development",
"path": "hello-word/hello.kt"
},
{
"name": "Kotlin (Script)",
"description": "Kotlin for scripting purposes",
"path": "hello-word/hello.kts"
},
{
"name": "Lasso",
"description": "Dynamic, object-oriented scripting language",
"path": "hello-word/hello.lasso"
},
{
"name": "Limbo",
"description": "Programming language for Inferno operating system",
"path": "hello-word/hello.b"
},
{
"name": "LiveScript",
"description": "Transpiles into JavaScript",
"path": "hello-word/hello.ls"
},
{
"name": "Logtalk",
"description": "Object-oriented logic programming language",
"path": "hello-word/hello.lgt"
},
{
"name": "LOLCODE",
"description": "Humorous esoteric programming language",
"path": "hello-word/hello.lol"
},
{
"name": "Logo",
"description": "Educational programming language",
"path": "hello-word/hello.lgo"
},
{
"name": "Lua",
"description": "Lightweight scripting language",
"path": "hello-word/hello.lua"
},
{
"name": "Maple",
"description": "Mathematical programming language",
"path": "hello-word/hello.mpl"
},
{
"name": "MATLAB",
"description": "Numerical computing environment and programming language",
"path": "hello-word/hello_matlab.m"
},
{
"name": "Mercury",
"description": "Purely declarative logic programming language",
"path": "hello-word/hello_mercury.m"
},
{
"name": "Nim",
"description": "Statically typed, compiled systems programming language",
"path": "hello-word/hello.nim"
},
{
"name": "Objective-C",
"description": "Extension of C for Apple platforms",
"path": "hello-word/hello.m"
},
{
"name": "Objective-C++",
"description": "Objective-C with C++ features",
"path": "hello-word/hello.mm"
},
{
"name": "OCaml",
"description": "Functional, imperative, and object-oriented language",
"path": "hello-word/hello.ml"
},
{
"name": "Octave",
"description": "Open-source numerical computation language",
"path": "hello-word/hello_octave.m"
},
{
"name": "Pascal",
"description": "High-level procedural language",
"path": "hello-word/hello.pas"
},
{
"name": "Perl",
"description": "Powerful text processing language",
"path": "hello-word/hello.pl"
},
{
"name": "Perl 5 (Script)",
"description": "Perl 5 for scripting purposes",
"path": "hello-word/hello.plx"
},
{
"name": "PHP",
"description": "Scripting language for web development",
"path": "hello-word/hello.php"
},
{
"name": "PHP (Script)",
"description": "PHP for scripting purposes",
"path": "hello-word/hello.phps"
},
{
"name": "PowerShell",
"description": "Task automation and configuration management framework",
"path": "hello-word/hello.ps1"
},
{
"name": "Prolog",
"description": "Logic programming language",
"path": "hello-word/hello.pro"
},
{
"name": "Python",
"description": "High-level language for many domains",
"path": "hello-word/hello.py"
},
{
"name": "R",
"description": "Statistical computing and graphics",
"path": "hello-word/hello.r"
},
{
"name": "Racket",
"description": "Modern Lisp-family programming language",
"path": "hello-word/hello.rkt"
},
{
"name": "Raku",
"description": "Perl 6, a member of the Perl family of languages",
"path": "hello-word/hello.p6"
},
{
"name": "Rexx",
"description": "Interpreted programming language",
"path": "hello-word/hello.rexx"
},
{
"name": "Ruby",
"description": "Dynamic language for web and scripting",
"path": "hello-word/hello.rb"
},
{
"name": "Ruby (Script)",
"description": "Ruby for scripting purposes",
"path": "hello-word/hello.rbw"
},
{
"name": "Rust",
"description": "Safe, high-performance systems language",
"path": "hello-word/hello.rs"
},
{
"name": "Scala",
"description": "Combines functional and object-oriented programming",
"path": "hello-word/hello.scala"
},
{
"name": "Scheme",
"description": "Minimalist dialect of Lisp",
"path": "hello-word/hello.scm"
},
{
"name": "Scheme (Script)",
"description": "Scheme for scripting purposes",
"path": "hello-word/hello_script.scm"
},
{
"name": "Shakespeare",
"description": "Programming language written in the style of Shakespeare plays",
"path": "hello-word/hello.spl"
},
{
"name": "Shell",
"description": "Unix shell and command language",
"path": "hello-word/hello.sh"
},
{
"name": "Smalltalk",
"description": "Object-oriented, dynamically typed language",
"path": "hello-word/hello.st"
},
{
"name": "SQL",
"description": "Domain-specific language for managing data",
"path": "hello-word/hello.sql"
},
{
"name": "Swift",
"description": "High-performance Apple language",
"path": "hello-word/hello.swift"
},
{
"name": "Swift (Script)",
"description": "Swift for scripting purposes",
"path": "hello-word/hello_script.swift"
},
{
"name": "Tcl",
"description": "Dynamic programming language",
"path": "hello-word/hello.tcl"
},
{
"name": "TypeScript",
"description": "Superset of JavaScript that compiles to plain JavaScript",
"path": "hello-word/hello.ts"
},
{
"name": "VBA",
"description": "Event-driven programming language for Microsoft Office applications",
"path": "hello-word/hello.vba"
},
{
"name": "VBScript",
"description": "ActiveX scripting language",
"path": "hello-word/hello.vbs"
},
{
"name": "Verilog",
"description": "Hardware description language",
"path": "hello-word/hello.v"
},
{
"name": "VHDL",
"description": "Hardware description language",
"path": "hello-word/hello.vhd"
},
{
"name": "Visual Basic .NET",
"description": "Multi-paradigm, object-oriented programming language",
"path": "hello-word/hello.vb"
},
{
"name": "WebAssembly Text",
"description": "Text format for WebAssembly",
"path": "hello-word/hello.wat"
},
{
"name": "Whitespace",
"description": "Esoteric language using only whitespace",
"path": "hello-word/hello.ws"
},
{
"name": "Wolfram Language",
"description": "Multi-paradigm computational language",
"path": "hello-word/hello.wl"
},
{
"name": "XQuery",
"description": "Query language for XML data",
"path": "hello-word/hello.xq"
},
{
"name": "YAML",
"description": "Human-friendly data serialization standard",
"path": "hello-word/hello.yaml"
},
{
"name": "Zig",
"description": "General-purpose programming language for maintaining robust, optimal, and reusable software",
"path": "hello-word/hello.zig"
}
]