This repository has been archived by the owner on Nov 18, 2020. It is now read-only.
forked from proglangdesign/proglangdesign.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.xhtml
747 lines (682 loc) · 24.9 KB
/
index.xhtml
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Programming Language Design</title>
<link rel="stylesheet" href="style.css"/>
<link rel="alternate stylesheet" href="amber.css" title="Amber"/>
<link rel="alternate stylesheet" href="green.css" title="Green"/>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
</head>
<body>
<header>
<h2 class="shell" id="pagelink"><a href="/">proglangdesign.net</a></h2>
<nav>
<a href="#projects">Projects</a>
<a href="#resources">Resources</a>
</nav>
</header>
<section id="hero">
<h1>Programming Language Design</h1>
<nav>
<h2>Join us!</h2>
<a class="shell button reddit"
href="https://reddit.com/r/ProgrammingLanguages">Subreddit</a>
<a class="shell button irc"
href="#join-irc">IRC</a>
<a class="shell button discord"
href="https://discord.gg/4Kjt3ZE">Discord</a>
</nav>
</section>
<section id="projects">
<h2>Take a look at our projects</h2>
<div class="project">
<a href="https://adamant-lang.org/">
<img src="images/logo-adamant.png" alt="" />
<h3>Adamant</h3>
</a>
<span class="author">
<a href="https://github.com/WalkerCodeRanger">WalkerCodeRanger</a>
</span>
<p>A high-level object-oriented language using a Rust style borrow checker
for memory management (no GC).</p>
</div>
<div class="project">
<a href="https://github.com/alox-lang/alox">
<img src="images/logo-placeholder.png" alt="" />
<h3>Alox</h3>
</a>
<span class="author">phase</span>
<p>A systems language with a more advanced type system.</p>
</div>
<div class="project">
<a href="https://github.com/jfecher/ante">
<img src="images/logo-placeholder.png" alt="" />
<h3>Ante</h3>
</a>
<span class="author">rndmprsn</span>
<p>A compiled systems language focusing on providing extensibility
through the use of a compile-time API.</p>
</div>
<div class="project">
<a href="https://github.com/astrolang/astro">
<img src="images/logo-astro.png" alt="" />
<h3>Astro</h3>
</a>
<span class="author">
<a href="https://github.com/appcypher">appcypher</a>
</span>
<p>A fun safe language
for rapid prototyping and high performance applications</p>
</div>
<div class="project">
<a href="https://github.com/zesterer/atto/">
<img src="images/logo-placeholder.png" alt="" />
<h3>Atto</h3>
</a>
<span class="author">Joshua Barretto</span>
<p>A functional programming language that fits on the back of a postcard.</p>
</div>
<div class="project">
<a href="https://github.com/sage-code/bee/wiki">
<img src="images/logo-bee.png" alt="" />
<h3>Bee</h3>
</a>
<span class="author">sagecode</span>
<p>A pragmatic, readable and efficient programming language
for technical applications.</p>
</div>
<div class="project">
<a href="http://cone.jondgoodwin.com/">
<img src="images/logo-cone.png" alt="" />
<h3>Cone</h3>
</a>
<span class="author">jondgoodwin</span>
<p>A fast, fit, friendly, and safe systems programming language
to power the 3D web.</p>
</div>
<div class="project">
<a href="https://cuneiform-lang.org/">
<img src="images/logo-placeholder.png" alt="" />
<h3>Cuneiform</h3>
</a>
<span class="author">
<a href="https://github.com/joergen7">joergen7</a>
</span>
<p>A large-scale data analysis functional programming language
which is general, expressive, distributed, and scalable.</p>
</div>
<div class="project">
<a href="https://github.com/Dyvil/Dyvil">
<img src="images/logo-placeholder.png" alt="" />
<h3>Dyvil</h3>
</a>
<span class="author">Clashsoft</span>
<p>A multi-paradigm, general purpose language for the JVM,
with an extensible syntax.</p>
</div>
<div class="project">
<a href="https://egel-lang.github.io/">
<img src="images/logo-placeholder.png" alt="" />
<h3>Egel</h3>
</a>
<span class="author">spruit11</span>
<p>An interpreter for eager untyped combinator rewriting
implemented in C++.</p>
</div>
<div class="project">
<a href="https://github.com/xkapastel/electric-parens">
<img src="images/logo-placeholder.png" alt="" />
<h3>Electric Parens</h3>
</a>
<span class="author">xkapastel</span>
<p>A Lisp machine for desktop, web and mobile.</p>
</div>
<div class="project">
<a href="https://github.com/nathanmerrill/elegance">
<img src="images/logo-placeholder.png" alt="" />
<h3>Elegance</h3>
</a>
<span class="author">nathanmerrill</span>
<p>An objected oriented language aiming for high type-safety
and readability.</p>
</div>
<div class="project">
<a href="https://github.com/bakpakin/Fennel">
<img src="images/logo-placeholder.png" alt="" />
<h3>Fennel</h3>
</a>
<span class="author">technomancy</span>
<p>A lisp which compiles to Lua with zero overhead,
revived by technomancy.</p>
</div>
<div class="project">
<a href="https://github.com/Pierre-vh/Fox">
<img src="images/logo-placeholder.png" alt="" />
<h3>Fox</h3>
</a>
<span class="author">Pierre-vh</span>
<p>A statically typed scripting language designed
for simplicity and embeddability.</p>
</div>
<div class="project">
<a href="https://github.com/swordglowsblue/fukuro">
<img src="images/logo-fukuro.png" alt="" />
<h3>Fukuro</h3>
</a>
<span class="author">swordglowsblue</span>
<p>A statically-typed programming language
designed for simplicity, minimalism, and ease of use.</p>
</div>
<div class="project">
<a href="https://futhark-lang.org/">
<img src="images/logo-futhark.png" alt="" />
<h3>Futhark</h3>
</a>
<span class="author">Athas</span>
<p>A high-performance parallel functional array language
targeting GPUs.</p>
</div>
<div class="project">
<a href="https://github.com/chrisosaurus/icarus">
<img src="images/logo-placeholder.png" alt="" />
<h3>Icarus</h3>
</a>
<span class="author">
<a href="https://github.com/chrisosaurus">cjh`</a>
</span>
<p>A minimum-viable type-safe imperative language
for exploring mutation and general side-effect control.</p>
</div>
<div class="project">
<a href="http://inko-lang.org/">
<img src="images/logo-placeholder.png" alt="" />
<h3>Inko</h3>
</a>
<span class="author">yorickpeterse</span>
<p>A gradually typed, interpreted, object-oriented language
drawing inspiration from many others.</p>
</div>
<div class="project">
<a href="https://huia.dev">
<img src="images/logo-huia.png" alt="" />
<h3>Huia</h3>
</a>
<span class="author">
<a href="https://gitlab.com/jimsy">James Harton</a>
</span>
<p>Huia is an immutable, typed, object oriented programming language
targetting native and web execution.</p>
</div>
<div class="project">
<a href="https://jazz-lang.github.io/Jazz/">
<img src="images/logo-jazz.png" alt="" />
<h3>Jazz</h3>
</a>
<span class="author">Adel Prokurov</span>
<p>A systems programming language
with a JIT and AOT compiler that uses GCCJIT as backend.</p>
</div>
<div class="project">
<a href="https://www.jinx-lang.org/">
<img src="images/logo-jinx.png" alt="" />
<h3>Jinx</h3>
</a>
<span class="author">
<a href="https://www.reddit.com/u/BoarsLair">
James Boer
</a>
</span>
<p>An clean, embeddable scripting language designed
with an asynchronous and thread-safe execution model.</p>
</div>
<div class="project">
<a href="http://www.juniper-lang.org/">
<img src="images/logo-placeholder.png" alt="" />
<h3>Juniper</h3>
</a>
<span class="author">Dynasty</span>
<p>A functional reactive programming language
for the Arduino and other related platforms.</p>
</div>
<div class="project">
<a href="https://github.com/KeliLanguage/compiler">
<img src="images/logo-placeholder.png" alt="" />
<h3>Keli</h3>
</a>
<span class="author">
<a href="https://github.com/wongjiahau">wongjiahau</a>
</span>
<p>Keli is a purely functional programming language
based on Haskell and Smalltalk, focusing on IDE integration.</p>
</div>
<div class="project">
<a href="http://kittenlang.org/">
<img src="images/logo-kitten.png" alt="" />
<h3>Kitten</h3>
</a>
<span class="author">
<a href="https://github.com/evincarofautumn">evincar</a>
</span>
<p>A statically typed concatenative language with effect types.</p>
</div>
<div class="project">
<a href="http://norstrulde.org/language84/">
<img src="images/logo-placeholder.png" alt="" />
<h3>Language 84</h3>
</a>
<span class="author">
<a href="https://www.reddit.com/u/ericbb">ericbb</a>
</span>
<p>A hobby language with a self-hosting compiler.
It is similar in style to Scheme, Standard ML, and Erlang.</p>
</div>
<div class="project">
<a href="https://github.com/kprotty/lazer">
<img src="images/logo-placeholder.png" alt="" />
<h3>Lazer</h3>
</a>
<span class="author">Protty</span>
<p>A programming language focused on concurrency and low memory usage.</p>
</div>
<div class="project">
<a href="https://hassanalinali.github.io/Lesma/">
<img src="images/logo-lesma.png" alt="" />
<h3>Lesma</h3>
</a>
<span class="author">Hassan Alin Ali</span>
<p>Lesma is a compiled, gradually typed, imperative
and object oriented programming language.</p>
</div>
<div class="project">
<a href="https://leverlanguage.com/">
<img src="images/logo-placeholder.png" alt="" />
<h3>Lever</h3>
</a>
<span class="author">Cheery</span>
<p>A dynamically typed language
built to absorb features from other languages.</p>
</div>
<div class="project">
<a href="https://github.com/LorxuLang/">
<img src="images/logo-lorxu.png" alt="" />
<h3>Lorxu</h3>
</a>
<span class="author">slavfox</span>
<p>An ever-evolving experiment in declarativeness
that strives to one day settle on a consistent syntax.</p>
</div>
<div class="project">
<a href="https://github.com/lunarlang/lunar">
<img src="images/logo-lunar.png" alt="" />
<h3>Lunar</h3>
</a>
<span class="author">Apakovtac</span>
<p>Lunar is a superset programming language of Lua 5.1,
inspired by TypeScript and Ruby.</p>
</div>
<div class="project">
<a href="https://mercurylang.org/">
<img src="images/logo-mercury.png" alt="" />
<h3>Mercury</h3>
</a>
<span class="author">
<a href="http://mercurylang.org/development/people.html">Many</a>
including <a href="https://paul.bone.id.au">Paul Bone</a>.
</span>
<p>A logic/functional programming language
with advanced static analysis and error detection features.</p>
</div>
<div class="project">
<a href="https://github.com/monte-language">
<img src="images/logo-placeholder.png" alt="" />
<h3>Monte</h3>
</a>
<span class="author">dash</span>
<p>A dynamic programming language inspired by Python and E.</p>
</div>
<div class="project">
<a href="https://github.com/akkartik/mu">
<img src="images/logo-placeholder.png" alt="" />
<h3>Mu</h3>
</a>
<span class="author">
<a href="https://www.reddit.com/u/akkartik">akkartik</a>
</span>
<p>A purely statement-oriented language (like Basic)
designed for teaching programming 1-on-1.</p>
</div>
<div class="project">
<a href="https://gitlab.com/Bleu-Box/mushroom">
<img src="images/logo-placeholder.png" alt="" />
<h3>Mushroom</h3>
</a>
<span class="author">
<a href="https://gitlab.com/Bleu-Box">Benjamin Duchild</a>
</span>
<p>An experimental functional programming language with
an emphasis on type inference and aesthetic syntax.</p>
</div>
<div class="project">
<a href="https://myrlang.org/">
<img src="images/logo-placeholder.png" alt="" />
<h3>Myrddin</h3>
</a>
<span class="author">Ori_B</span>
<p>A systems language aiming to fit in a similar niche to C,
but with fewer bullets in your feet.</p>
</div>
<div class="project">
<a href="https://never-lang.github.io/never/">
<img src="images/logo-placeholder.png" alt="" />
<h3>Never</h3>
</a>
<span class="author">Never</span>
<p>A simple syntactically-scoped, strongly-typed, call-by-value,
functional language</p>
</div>
<div class="project">
<a href="https://github.com/ilyash/ngs">
<img src="images/logo-placeholder.png" alt="" />
<h3>NGS</h3>
</a>
<span class="author">ilyash</span>
<p>Next Generation Shell, an alternative to many scripting languages,
with syntax for idempotent resource manipulation.</p>
</div>
<div class="project">
<a href="https://nuua.io/">
<img src="images/logo-placeholder.png" alt="" />
<h3>Nuua</h3>
</a>
<span class="author">
<a href="https://erik.cat/">Erik Campobadal</a>
</span>
<p>A high level, static, interpreted language
using a layered system architecture.</p>
</div>
<div class="project">
<a href="https://github.com/ScratchOs/starfish">
<img src="images/logo-placeholder.png" alt="" />
<h3>Orange</h3>
</a>
<span class="author">orange</span>
<p>An assembly and low level language for a custom virtual machine
designed like a 1980s computer.</p>
</div>
<div class="project">
<a href="http://owen-lang.org/">
<img src="images/logo-owen.png" alt="" />
<h3>Owen</h3>
</a>
<span class="author">pawwkm</span>
<p>A language close to C with modern touches.</p>
</div>
<div class="project">
<a href="https://git.ikeran.org/petal-lang/petalc">
<img src="images/logo-petal.svg" alt="" />
<h3>Petal</h3>
</a>
<span class="author">Neia</span>
<p>A speedy applications language with metaprogramming.</p>
</div>
<div class="project">
<a href="https://plasmalang.org/">
<img src="images/logo-plasma.png" alt="" />
<h3>Plasma</h3>
</a>
<span class="author">
<a href="https://paul.bone.id.au/">Paul Bone</a>
</span>
<p>A language that balances functional and imperative programming,
and has state-of-the-art concurrency and parallelism features.</p>
</div>
<div class="project">
<a href="https://github.com/pikelet-lang/pikelet">
<img src="images/logo-pikelet.png" alt="" />
<h3>Pikelet</h3>
</a>
<span class="author"><a href="https://github.com/brendanzab">brendanzab</a></span>
<p>A friendly little systems language
with first-class types and unboxed data.</p>
</div>
<div class="project">
<a href="https://wongjiahau.github.io/Pineapple/">
<img src="images/logo-placeholder.png" alt="" />
<h3>Pineapple</h3>
</a>
<span class="author">wongjiahau</span>
<p>A programming language that focuses
on readability and maintainability.</p>
</div>
<div class="project">
<a href="https://pisc.junglecoder.com/">
<img src="images/logo-placeholder.png" alt="" />
<h3>PISC</h3>
</a>
<span class="author">yumaikas</span>
<p>An attempt to make concatenative programming less mind-bendy
via locals, closures, and syntactic sugar.</p>
</div>
<div class="project">
<a href="https://github.com/HackerFoo/poprc">
<img src="images/logo-placeholder.png" alt="" />
<h3>Popr</h3>
</a>
<span class="author">HackerFoo</span>
<p>Concatenative programming for types as well as values,
striving for purity, correctness, and efficient execution.</p>
</div>
<div class="project">
<a href="https://github.com/ltcmelo/psychec">
<img src="images/logo-placeholder.png" alt="" />
<h3>Psyche-c</h3>
</a>
<span class="author">ltcmelo</span>
<p>A compiler for incomplete C code,
featuring a Hindley/Milner-inspired type inference engine for C.</p>
</div>
<div class="project">
<a href="http://pyac.ca/">
<img src="images/logo-placeholder.png" alt="" />
<h3>Pyash</h3>
</a>
<span class="author">htafdwes</span>
<p>A language based on linguistic universals
for totally taking over the world.</p>
</div>
<div class="project">
<a href="https://github.com/rebuild-lang">
<img src="images/logo-rebuild.png" alt="" />
<h3>Rebuild</h3>
</a>
<span class="author">arBmind</span>
<p>A project to experiment with and build
the ultimate systems programming language.</p>
</div>
<div class="project">
<a href="https://github.com/johnli0135/redox-lang">
<img src="images/logo-placeholder.png" alt="" />
<h3>Redox</h3>
</a>
<span class="author">user</span>
<p>A functional language with lifetimes and uniqueness types
for efficiency and gc-less memory safety.</p>
</div>
<div class="project">
<a href="https://github.com/WillBAnders/Rhovas">
<img src="images/logo-placeholder.png" alt="" />
<h3>Rhovas</h3>
</a>
<span class="author">
<a href="https://github.com/WillBAnders">Blake Anderson</a>
</span>
<p>An experimental programming language for API design.</p>
</div>
<div class="project">
<a href="https://github.com/ColonelJ/Starpial">
<img src="images/logo-placeholder.png" alt="" />
<h3>Starpial</h3>
</a>
<span class="author">ColonelJ</span>
<p>A stack-oriented functional logic language with OOP,
dependent and refinement types, and automatic parallelization.</p>
</div>
<div class="project">
<a href="https://safelyswift.github.io/Swizzle/">
<img src="images/logo-swizzle.png" alt="" />
<h3>Swizzle</h3>
</a>
<span class="author"><a href="https://safelyswift.github.io/blog/">SafelySwift</a></span>
<p>A compiled, object-oriented, and statically typed language
for graphics rendering that is fast and versatile.</p>
</div>
<div class="project">
<a href="https://github.com/Ahnfelt/topshell">
<img src="images/logo-topshell.png" alt="" />
<h3>TopShell</h3>
</a>
<span class="author"><a href="https://github.com/Ahnfelt">Ahnfelt</a></span>
<p>
Purely functional scripting language with structural types, type inference,
reactive streams and visualization.
</p>
</div>
<div class="project">
<a href="https://github.com/Tarptaeya/truck">
<img src="images/logo-truck.png" alt="" />
<h3>Truck</h3>
</a>
<span class="author"><a href="https://github.com/Tarptaeya">Tarptaeya</a></span>
<p>
Truck is a dynamic programming language with a focus on simplicity.
</p>
</div>
<div class="project">
<a href="https://ubik.site/">
<img src="images/logo-placeholder.png" alt="" />
<h3>ubik</h3>
</a>
<span class="author">haldean</span>
<p>A safe functional language for distributed and
embedded stream programming, with an unorthodox syntax.</p>
</div>
<div class="project">
<a href="https://github.com/wu-lang/wu">
<img src="images/logo-wu.png" alt="" />
<h3>Wu</h3>
</a>
<span class="author">nilq</span>
<p>An expression oriented, gradually typed, sweet,
and mission-critical programming language.</p>
</div>
<div class="project">
<a href="https://zoda.dev/">
<img src="images/logo-zoda.png" alt="" />
<h3>Zoda</h3>
</a>
<span class="author">
<a href="https://blog.andrepopovitch.com/">Andre Popovitch</a>
</span>
<p>A language designed from the ground up for game development.</p>
</div>
</section>
<section id="irc">
<h2>#proglangdesign</h2>
<h3 id="join-irc">Joining the IRC channel</h3>
<p>There are many ways to connect to IRC. You can:</p>
<ul class="shell-list">
<li>
Install one of the
(<a href="https://en.wikipedia.org/wiki/Comparison_of_Internet_Relay_Chat_clients">many!</a>)
available IRC clients.
</li>
<li>Use <a href="https://riot.im/app/#/directory">riot.im</a>
(join #freenode_#proglangdesign:matrix.org)</li>
<li>
Join the
<a href="https://webchat.freenode.net/?channels=proglangdesign">#proglangdesign channel</a>
with Freenode's web-based client.
</li>
</ul>
<p>
You may also wish to peruse this
<a href="https://www.youtube.com/watch?v=O2rGTXHvPCQ">
excerpt from a documentary on IRC.</a>
</p>
<p>
If you are unwilling to use Discord on account of it being proprietary,
you may prefer to use our Matrix bridge to access it.
Join `<code>#info:matrix.qipl.org</code>` with a Matrix client such as
<a href="https://riot.im/app/#/directory">riot.im</a>,
and all of the Discord server's channels will be accessible from there.
</p>
<h3 id="irc-bots">IRC Bots</h3>
<p>
No channel is complete without a collection of noisy bots.
They are also a good way to show off your programming language.
The following bots can be found on #proglangdesign.
Please do not abuse them; it is not their fault.
</p>
<ul>
<li>
<span class="shell">egelbot:</span>
Speaks <a href="https://egel-lang.github.io/">Egel</a>.
</li>
<li>
<span class="shell">popr:</span>
Speaks
<a href="http://hackerfoo.com/posts/popr-tutorial-0-dot-machines.html">Popr</a>.
Also supports interactive programs.
</li>
<li>
<span class="shell">sturluson:</span>
Speaks <a href="https://futhark-lang.org/">Futhark</a>.
</li>
</ul>
<p>
To try out a bot, simply say
`<code>botname: some <lang> code</code>`.
</p>
</section>
<section id="resources">
<h2>Resources</h2>
<h3 id="wiki">PLD Wiki</h3>
<p>
We have a
<a href="https://github.com/proglangdesign/proglangdesign-wiki/wiki">
wiki</a>! Only members of the GitHub organization can edit the wiki.</p>
<h3 id="join-github">Joining the GitHub organization</h3>
<p>
If you are a regular on #proglangdesign, ask hackerfoo for an invitation
to the <a href="https://github.com/proglangdesign/">GitHub organization</a>,
which is necessary to edit the wiki, or
<a href="https://github.com/proglangdesign/proglangdesign.github.io">
modify this website</a> without needing to make a pull request.
</p>
<h3 id="handy-links">Handy Links</h3>
<ul>
<li>
<a href="http://profs.sci.univr.it/~merro/files/harper.pdf">
Practical Foundations for Programming Languages (PDF)
</a> is a very comprehensive introduction to programming language theory.
</li>
<li>
<a href="http://lambda-the-ultimate.org/">Lambda the Ultimate</a>,
probably the oldest programming languages weblog out there.
</li>
<li>
<a href="http://craftinginterpreters.com">Crafting Interpreters</a>,
an online, in progress book by Bob Nystrom explaning how to create interpreters and compilers from both Java and C, from scratch.
</li>
</ul>
</section>
</body>
</html>