Fix for #join on empty list
1 files changed, 4 insertions(+), 0 deletions(-) M lib/dhall/ast.rb
M lib/dhall/ast.rb => lib/dhall/ast.rb +4 -0
@@ 461,6 461,10 @@ module Dhall self end + def join(*) + "" + end + def concat(other) other end