1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| - A simple template language.
- Composable blocks - emulating inheritance when needed.
- Functions with where clauses, case statements, pattern matching, guards.
- Template literals in functions with a simple line based escape.
- Function literals in template with a simple line based escape.
- Chainable functions.
- Separate "function" area.
- Import statements.
------
Approach?
- Generate haskell code and let the compiler take care of stuff.
- A fully functional template language.
- A combination of the two?
|