Actually just three programming languages in a trenchcoat
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add a simple sample program

+6
+6
samples/fac.tri
··· 1 + func fac n = n * fac n - 1 2 + func fac 0 = 1 3 + 4 + proc main!() { 5 + print!($"3! = ${fac 3}") 6 + }