Builder concatenates list in output
Create builders for the following strategies:
// Prints: ‘ab’
print-test:
(selected, position, ast, path, project-path) -> (filename, result)
where
<guarantee-extension(|“renamed.aterm”)> path => filename ;
result := [“a”, “b”] // ab
// Prints: ‘"a","b"’
print-test2:
(selected, position, ast, path, project-path) -> (filename, result)
where
<guarantee-extension(|“renamed.aterm”)> path => filename ;
result := "a", "b" // "a", "b"The shallow list shows a simple string, the deep list shows a deep list.
Submitted by Tim on 26 November 2010 at 17:37
Expected would be to see a list in both cases.
Issue Log
On 30 November 2010 at 21:43 YellowGrass commented:
On 30 November 2010 at 21:43 Lennart Kats closed this issue.
Log in to post comments