Pyret
https://gyazo.com/f31e00db291d688ee49b1e779bc017e8
website
github
JavaScript実装
関数型言語
syntaxはPython inspired
教育向け言語らしい
https://exercism.org/tracks/pyret
Exercism経由で知った
関数定義の直後にテストを書いたりするらしい
code:pyret
fun sum(l):
cases (List) l:
| empty => 0
| link(first, rest) => first + sum(rest)
end
where:
sum(list: ) is 0
sum(list: 1, 2, 3) is 6
end
#プログラミング言語