Glen Whitney
991976d3a8
All checks were successful
continuous-integration/drone/push Build is passing
feat: sequencing of expressions with newline to same indent Also revised README to reflect greater emphasis on streams. Haskell code generation unsurprisingly required a fairly significant rework. Resolves #3. Co-authored-by: Glen Whitney <glen@studioinfinity.org> Reviewed-on: #11 Co-Authored-By: Glen Whitney <glen@nobody@nowhere.net> Co-Committed-By: Glen Whitney <glen@nobody@nowhere.net>
10 lines
244 B
Plaintext
10 lines
244 B
Plaintext
module util
|
|
imports libstrategolib
|
|
|
|
rules
|
|
join(|infix) : [] -> ""
|
|
join(|infix) : [x | xs] -> <conc-strings>(x, <prejoin(|infix)>xs)
|
|
|
|
prejoin(|infix) : [] -> ""
|
|
prejoin(|infix) : [x | xs] -> <concat-strings>[infix,x,<prejoin(|infix)>xs]
|