···11+# Megaton - a language to blow minds
22+with how boring it is.
33+44+## Ideas
55+66+### Uniformity
77+88+* Polymorphism expressed as functions from types to types
99+* Comptime code generation instead of derives
1010+
+1-1
examples/fib_iterative.mt
···33}
4455fn fib(n: i32) {
66- let a =
66+ let a = n? <2 :
77}