forked from merwin-asm/LanguageIndex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.json
8426 lines (8426 loc) · 327 KB
/
main.json
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
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"A# .NET": {
"description": ".NET implementation of the A# language",
"OOP": true,
"type": "statically typed",
"speed": "fast",
"mostly_used_for": "creating Windows desktop applications",
"market_share": null,
"installation": {
"windows": "choco install asharp-dotnet",
"linux": "sudo apt-get install asharp-dotnet",
"macOS": "brew install asharp-dotnet"
}
},
"A# (Axiom)": {
"description": "Axiom implementation of the A# language",
"OOP": true,
"type": "dynamically typed",
"speed": "medium",
"mostly_used_for": "symbolic computation and mathematical research",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install axiom",
"macOS": "brew install axiom"
}
},
"A-0 System": {
"description": "One of the earliest compiler programming languages",
"OOP": false,
"type": "not applicable",
"speed": "slow",
"mostly_used_for": "teaching and research",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"A+": {
"description": "Array programming language",
"OOP": false,
"type": "dynamically typed",
"speed": "fast",
"mostly_used_for": "numerical analysis and data processing",
"market_share": null,
"installation": {
"windows": "choco install aplus",
"linux": "sudo apt-get install aplus-fsf",
"macOS": "brew install aplus"
}
},
"A++": {
"description": "Programming language for high-performance computing",
"OOP": true,
"type": "statically typed",
"speed": "very fast",
"mostly_used_for": "scientific computing and simulation",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install aplus-plus",
"macOS": "brew install aplus-plus"
}
},
"ABAP": {
"description": "Programming language for SAP software development",
"OOP": true,
"type": "statically typed",
"speed": "medium",
"mostly_used_for": "enterprise resource planning applications",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"ABC": {
"description": "Imperative programming language and environment",
"OOP": false,
"type": "dynamically typed",
"speed": "slow",
"mostly_used_for": "teaching and research",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"ABC ALGOL": {
"description": "Dialect of the Algol 68 programming language",
"OOP": false,
"type": "statically typed",
"speed": "medium",
"mostly_used_for": "teaching and research",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"ABLE": {
"description": "Programming language for developing applications for the Amiga computer",
"OOP": true,
"type": "dynamically typed",
"speed": "medium",
"mostly_used_for": "developing applications for the Amiga computer",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"ABSET": {
"description": "Programming language for the development of software systems",
"OOP": true,
"type": "statically typed",
"speed": "fast",
"mostly_used_for": "developing software systems",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"ABSYS": {
"description": "Programming language used in the ABSYS modeling system",
"OOP": false,
"type": "not applicable",
"speed": "not available",
"mostly_used_for": "modeling and simulation",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"ACC": {
"description": "Programming language developed for the Atari 8-bit family of computers",
"OOP": false,
"type": "not applicable",
"speed": "not available",
"mostly_used_for": "developing software for Atari 8-bit computers",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"Accent": {
"description": "Programming language for database-centric web applications",
"OOP": true,
"type": "statically typed",
"speed": "fast",
"mostly_used_for": "database-centric web applications",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"Ace DASL": {
"description": "Educational programming language for novices",
"OOP": true,
"type": "dynamically typed",
"speed": "slow",
"mostly_used_for": "teaching programming to novices",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"ACL2": {
"description": "Programming language and theorem proving system based on Common Lisp",
"OOP": false,
"type": "dynamically typed",
"speed": "medium",
"mostly_used_for": "formal verification of software and hardware systems",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install acl2",
"macOS": "brew install acl2"
}
},
"ACT-III": {
"description": "Programming language developed for the Actor model of computation",
"OOP": false,
"type": "not applicable",
"speed": "not available",
"mostly_used_for": "concurrent and distributed computing",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"Action!": {
"description": "Programming language developed specifically for game development on the Atari 8-bit family of computers",
"OOP": true,
"type": "not applicable",
"speed": "not available",
"mostly_used_for": "game development on the Atari 8-bit family of computers",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"ActionScript": {
"description": "Object-oriented programming language used primarily for the development of Adobe Flash content",
"OOP": true,
"type": "dynamically typed",
"speed": "fast",
"mostly_used_for": "developing interactive web applications and games",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": "brew install adobe-air-sdk; brew cask install flash-player-debugger"
}
},
"Ada": {
"description": "High-level programming language used primarily in safety-critical and real-time systems",
"OOP": true,
"type": "statically typed",
"speed": "fast",
"mostly_used_for": "safety-critical and real-time systems",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install gcc-ada",
"macOS": "brew install ada"
}
},
"Adenine": {
"description": "Functional programming language developed specifically for bioinformatics",
"OOP": false,
"type": "not applicable",
"speed": "not available",
"mostly_used_for": "bioinformatics and computational biology",
"market_share": null,
"installation": {
"windows": null,
"linux": "pip install adenine",
"macOS": "pip install adenine"
}
},
"Agda": {
"description": "Dependently typed functional programming language and interactive theorem prover",
"OOP": false,
"type": "dependently typed",
"speed": "not available",
"mostly_used_for": "formal verification of mathematical proofs and software systems",
"market_share": null,
"installation": {
"windows": "choco install agda",
"linux": "sudo apt-get install agda",
"macOS": "brew install agda"
}
},
"Agilent VEE": {
"description": "Graphical programming language and environment used primarily for test and measurement automation",
"OOP": false,
"type": "not applicable",
"speed": "not available",
"mostly_used_for": "test and measurement automation",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"Agora": {
"description": "Domain-specific language and compiler for developing decentralized applications on the Ethereum blockchain",
"OOP": true,
"type": "dynamically typed",
"speed": "not available",
"mostly_used_for": "developing decentralized applications on the Ethereum blockchain",
"market_share": null,
"installation": {
"windows": null,
"linux": "curl https://getsubstrate.io -sSf | bash -s -- --fast; source ~/.cargo/env; cargo install agora-binaries",
"macOS": "curl https://getsubstrate.io -sSf | bash -s -- --fast; source ~/.cargo/env; cargo install agora-binaries"
}
},
"AIMMS": {
"description": "Modeling language and development environment used primarily for optimization and supply chain management",
"OOP": true,
"type": "declarative",
"speed": "fast",
"mostly_used_for": "optimization and supply chain management",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"Alef": {
"description": "Concurrent programming language developed specifically for distributed systems",
"OOP": false,
"type": "not applicable",
"speed": "not available",
"mostly_used_for": "concurrent programming in distributed systems",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"ALF": {
"description": "Programming language and environment used primarily for developing artificial intelligence systems",
"OOP": true,
"type": "dynamically typed",
"speed": "not available",
"mostly_used_for": "developing artificial intelligence systems",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install alf",
"macOS": "brew install alf"
}
},
"ALGOL 58": {
"description": "High-level programming language developed in the late 1950s and early 1960s",
"OOP": false,
"type": "not applicable",
"speed": "not available",
"mostly_used_for": "scientific computing and algorithmic development",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"ALGOL 60": {
"description": "High-level programming language developed in the late 1950s and early 1960s as a successor to ALGOL 58",
"OOP": false,
"type": "statically typed",
"speed": "not available",
"mostly_used_for": "scientific computing and algorithmic development",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"ALGOL 68": {
"description": "High-level programming language developed in the late 1960s as a successor to ALGOL 60",
"OOP": false,
"type": "statically and dynamically typed",
"speed": "not available",
"mostly_used_for": "scientific computing, systems programming, and artificial intelligence",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install algol68g",
"macOS": "brew install algol68g"
}
},
"ALGOL W": {
"description": "High-level programming language developed in the late 1970s as an extension to ALGOL 60",
"OOP": false,
"type": "statically typed",
"speed": "not available",
"mostly_used_for": null,
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"Alice": {
"description": "Educational programming language and environment designed to teach computer programming concepts",
"OOP": true,
"type": "dynamically typed",
"speed": "not available",
"mostly_used_for": "teaching programming concepts",
"market_share": null,
"installation": {
"windows": "choco install alice",
"linux": "sudo apt-get install alice3",
"macOS": "brew install alice"
}
},
"Alma-0": {
"description": "Programming language designed for concurrent, distributed systems",
"OOP": false,
"type": "not available",
"speed": "not available",
"mostly_used_for": "concurrent programming in distributed systems",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"AmbientTalk": {
"description": "Object-oriented programming language designed for distributed computing",
"OOP": true,
"type": "dynamically typed",
"speed": "not available",
"mostly_used_for": "distributed computing",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install ambienttalk",
"macOS": "brew install ambienttalk"
}
},
"Amiga E": {
"description": "Programming language developed for the Amiga computer platform",
"OOP": true,
"type": "dynamically typed",
"speed": "not available",
"mostly_used_for": "application development on the Amiga platform",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"AMOS": {
"description": "Programming language and development environment used for game development on the Amiga platform",
"OOP": false,
"type": "not available",
"speed": "not available",
"mostly_used_for": "game development on the Amiga platform",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"AMPL": {
"description": "Algebraic modeling language used for mathematical optimization and decision making",
"OOP": false,
"type": "statically typed",
"speed": "not available",
"mostly_used_for": "mathematical optimization and decision making",
"market_share": null,
"installation": {
"windows": null,
"linux": "wget https://ampl.com/dl/open/ampl.linux64.tgz; tar -xvzf ampl.linux64.tgz",
"macOS": null
}
},
"APL": {
"description": "Programming language designed for array processing and manipulation",
"OOP": false,
"type": "not available",
"speed": "not available",
"mostly_used_for": "array processing and manipulation, especially in mathematical and scientific computing",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install ngn-apl",
"macOS": null
}
},
"App Inventor for Android's visual block language": {
"description": "Visual block programming language designed for creating mobile applications for Android devices",
"OOP": false,
"type": "not available",
"speed": "not available",
"mostly_used_for": "mobile application development for Android devices",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"AppleScript": {
"description": "Scripting language developed by Apple for automating tasks on macOS",
"OOP": false,
"type": "not available",
"speed": "not available",
"mostly_used_for": "automation and scripting on macOS",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"Arc": {
"description": "Dialect of Lisp designed for rapid prototyping and web development",
"OOP": false,
"type": "dynamically typed",
"speed": "not available",
"mostly_used_for": "web development and rapid prototyping",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install arc",
"macOS": "brew install arc"
}
},
"ARexx": {
"description": "Scripting language developed for the Amiga computer platform",
"OOP": false,
"type": "not available",
"speed": "not available",
"mostly_used_for": "automation and scripting on the Amiga platform",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"Argus": {
"description": "Programming language designed for distributed computing and fault tolerance",
"OOP": true,
"type": "statically typed",
"speed": "not available",
"mostly_used_for": "distributed computing and fault tolerance",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install argus",
"macOS": "brew install argus"
}
},
"AspectJ": {
"description": "Aspect-oriented programming extension for the Java programming language",
"OOP": true,
"type": "statically typed",
"speed": "similar to Java",
"mostly_used_for": "modularizing cross-cutting concerns in Java applications",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install aspectj",
"macOS": "brew install aspectj"
}
},
"Assembly language": {
"description": "Low-level programming language that is converted into machine code",
"OOP": false,
"type": "not available",
"speed": "very fast",
"mostly_used_for": "system-level programming, embedded systems, and performance-critical applications",
"market_share": null,
"installation": {
"windows": "nasm -f win32 <filename.asm>",
"linux": "sudo apt-get install nasm; nasm -f elf64 <filename.asm>; ld <filename.o> -o <output_file>",
"macOS": "brew install nasm; nasm -f macho64 <filename.asm>; ld <filename.o> -o <output_file>"
}
},
"ATS": {
"description": "Programming language with a type system that supports both static and dynamic typing",
"OOP": true,
"type": "hybrid (statically and dynamically typed)",
"speed": "comparable to C",
"mostly_used_for": "system-level programming, web development, and concurrent programming",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install gcc; git clone https://github.com/githwxi/ATS-Postiats.git; cd ATS-Postiats; ./configure; make all_ngc",
"macOS": "brew install gmp; brew install boehmgc; git clone https://github.com/githwxi/ATS-Postiats.git; cd ATS-Postiats; ./configure; make all_ngc"
}
},
"Ateji PX": {
"description": "Programming language that extends Java with support for parallel programming",
"OOP": true,
"type": "statically typed",
"speed": "similar to Java",
"mostly_used_for": "parallel programming in Java applications",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"AutoHotkey": {
"description": "Scripting language for Windows used to automate repetitive tasks and create macros",
"OOP": false,
"type": "dynamically typed",
"speed": "not available",
"mostly_used_for": "automation and scripting on the Windows platform",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"Autocoder": {
"description": "Early assembly language developed by IBM in the 1950s",
"OOP": false,
"type": "not available",
"speed": "not available",
"mostly_used_for": "programming IBM mainframes in the 1950s and 1960s",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"AutoIt": {
"description": "Scripting language for automating Windows GUI tasks and general scripting",
"OOP": false,
"type": "dynamically typed",
"speed": "not available",
"mostly_used_for": "automation and scripting on the Windows platform",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"AutoLISP / Visual LISP": {
"description": "Dialect of the Lisp programming language used in AutoCAD",
"OOP": false,
"type": "dynamically typed",
"speed": "not available",
"mostly_used_for": "customizing and extending AutoCAD functionality",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"Averest": {
"description": "Software verification platform with a specification language and model checker",
"OOP": false,
"type": "statically typed",
"speed": "not available",
"mostly_used_for": "formal verification of software systems",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"AWK": {
"description": "Pattern-matching programming language commonly used for text processing",
"OOP": false,
"type": "dynamically typed",
"speed": "not available",
"mostly_used_for": "text processing and data extraction",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install gawk",
"macOS": "brew install gawk"
}
},
"Axum": {
"description": "Concurrent programming language developed by Microsoft Research",
"OOP": true,
"type": "statically typed",
"speed": "not available",
"mostly_used_for": "building distributed and parallel systems",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"B": {
"description": "Root of the BCPL language family and predecessor to C",
"OOP": false,
"type": "not available",
"speed": "not available",
"mostly_used_for": "systems programming and general-purpose programming in the 1970s",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"Babbage": {
"description": "Educational programming language designed to teach computer science concepts",
"OOP": false,
"type": "dynamically typed",
"speed": "not available",
"mostly_used_for": "teaching computer science concepts and basic programming",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install babbage",
"macOS": "brew install babbage"
}
},
"Bash": {
"description": "Unix shell and command language used for scripting and executing commands",
"OOP": false,
"type": "not applicable",
"speed": "not available",
"mostly_used_for": "shell scripting, automation, and system administration tasks",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install bash",
"macOS": "pre-installed"
}
},
"BASIC": {
"description": "Beginner's All-purpose Symbolic Instruction Code, a family of high-level programming languages",
"OOP": false,
"type": "dynamically typed",
"speed": "not available",
"mostly_used_for": "teaching programming concepts and developing simple applications",
"market_share": null,
"installation": {
"windows": "pre-installed or available through Visual Studio",
"linux": "sudo apt-get install bwbasic",
"macOS": "pre-installed"
}
},
"bc": {
"description": "Interactive command-line calculator with support for arbitrary precision arithmetic",
"OOP": false,
"type": "not applicable",
"speed": "not available",
"mostly_used_for": "performing calculations and mathematical operations from the command line",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install bc",
"macOS": "pre-installed"
}
},
"BCPL": {
"description": "Basic Combined Programming Language, a precursor to C and ancestor of the B and C languages",
"OOP": false,
"type": "not available",
"speed": "not available",
"mostly_used_for": "systems programming and general-purpose programming in the 1960s and 1970s",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"BeanShell": {
"description": "Small, embeddable Java source interpreter with object scripting language features",
"OOP": true,
"type": "dynamically typed",
"speed": "not available",
"mostly_used_for": "scripting within Java applications and environments",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install beanshell",
"macOS": "brew install beanshell"
}
},
"Batch (Windows/Dos)": {
"description": "Command-line interpreter and batch file processor included with Microsoft Windows and MS-DOS",
"OOP": false,
"type": "not applicable",
"speed": "not available",
"mostly_used_for": "performing system administration tasks and automating repetitive command-line tasks",
"market_share": null,
"installation": {
"windows": "pre-installed",
"linux": null,
"macOS": null
}
},
"Bertrand": {
"description": "Educational programming language designed to teach computer science concepts",
"OOP": false,
"type": "not available",
"speed": "not available",
"mostly_used_for": "teaching computer science concepts and basic programming",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"BETA": {
"description": "Object-oriented programming language with emphasis on flexible modular programming and software correctness",
"OOP": true,
"type": "statically typed",
"speed": "not available",
"mostly_used_for": "developing complex software systems and applications that require a high degree of software correctness",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install beta",
"macOS": null
}
},
"Bigwig": {
"description": "Declarative programming language for web development and content management",
"OOP": false,
"type": "not available",
"speed": "not available",
"mostly_used_for": "developing dynamic web applications, content management systems, and other web-based software",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": "brew install bigwig"
}
},
"Bistro": {
"description": "Domain-specific language for bioinformatics and computational biology",
"OOP": false,
"type": "not available",
"speed": "not available",
"mostly_used_for": "performing bioinformatics and computational biology tasks such as sequence analysis, data manipulation, and statistical analysis",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"BitC": {
"description": "Systems programming language with a focus on safety, security, and performance",
"OOP": true,
"type": "statically typed",
"speed": "not available",
"mostly_used_for": "developing system software and operating systems that require high levels of safety and security",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"BLISS": {
"description": "Systems programming language designed to be easy to use and highly portable",
"OOP": false,
"type": "not available",
"speed": "not available",
"mostly_used_for": "developing system software and applications that require high levels of portability and ease-of-use",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install bliss",
"macOS": null
}
},
"Blue": {
"description": "High-level programming language designed for teaching and learning programming concepts",
"OOP": true,
"type": "statically typed",
"speed": "not available",
"mostly_used_for": "teaching programming concepts to beginners and students",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"Bon": {
"description": "Programming language designed to be simple, easy to learn, and suitable for beginners",
"OOP": false,
"type": "dynamically typed",
"speed": "not available",
"mostly_used_for": "teaching programming concepts to beginners and developing small programs",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"Boo": {
"description": "Object-oriented programming language with a focus on efficient and expressive syntax",
"OOP": true,
"type": "statically typed",
"speed": "fast",
"mostly_used_for": "developing software systems and applications that require high performance and expressive syntax",
"market_share": null,
"installation": {
"windows": "choco install boo.lang",
"linux": "sudo apt-get install boo",
"macOS": "brew install boo"
}
},
"Boomerang": {
"description": "Retargetable decompiler that generates high-level code from binary executables",
"OOP": false,
"type": "not available",
"speed": "not available",
"mostly_used_for": "decompiling binary executables to aid in reverse engineering and malware analysis",
"market_share": null,
"installation": {
"windows": "choco install boomerang",
"linux": "sudo apt-get install boomerang",
"macOS": "brew install boomerang"
}
},
"Bourne shell": {
"description": "Command-line shell and scripting language for Unix-based operating systems",
"OOP": false,
"type": "not available",
"speed": "not available",
"mostly_used_for": "writing command-line scripts and automating system tasks on Unix-based operating systems",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install -y sh",
"macOS": null
}
},
"bash": {
"description": "Command-line shell and scripting language for Unix-based operating systems",
"OOP": false,
"type": "not available",
"speed": "not available",
"mostly_used_for": "writing command-line scripts and automating system tasks on Unix-based operating systems",
"market_share": null,
"installation": {
"windows": "choco install git.install --params '/GitAndUnixToolsOnPath'",
"linux": "sudo apt-get install -y bash",
"macOS": "brew install bash"
}
},
"ksh": {
"description": "Command-line shell and scripting language for Unix-based operating systems",
"OOP": false,
"type": "not available",
"speed": "not available",
"mostly_used_for": "writing command-line scripts and automating system tasks on Unix-based operating systems",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install -y ksh",
"macOS": "brew install ksh"
}
},
"BREW": {
"description": "Package manager for macOS and Linux systems",
"OOP": false,
"type": "not available",
"speed": "not available",
"mostly_used_for": "installing and managing software packages on macOS and Linux systems",
"market_share": null,
"installation": {
"windows": null,
"linux": "sudo apt-get install -y curl && /bin/bash -c '$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)'",
"macOS": "/bin/bash -c '$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)'"
}
},
"BPEL": {
"description": "XML-based language for describing business processes and workflows",
"OOP": false,
"type": "not available",
"speed": "not available",
"mostly_used_for": "describing and automating business processes and workflows",
"market_share": null,
"installation": {
"windows": null,
"linux": null,
"macOS": null
}
},
"C": {
"description": "General-purpose programming language known for its efficiency and low-level memory management capabilities",
"OOP": false,
"type": "statically typed",
"speed": "fast",
"mostly_used_for": "system programming, developing operating systems, embedded systems, and other applications that require high performance and direct hardware access",
"market_share": null,
"installation": {
"windows": "choco install mingw",
"linux": "sudo apt-get install -y gcc",
"macOS": "brew install gcc"