Skip to content

Commit

Permalink
Prefer empty parentheses instead of nil in Jumpmaze domain
Browse files Browse the repository at this point in the history
  • Loading branch information
Maumagnaguagno committed Jan 24, 2018
1 parent 364a95a commit aaf3177
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/jumpmaze/jumpmaze.ujshop
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
)

(:operator (!!visit ?pos)
nil
nil
()
()
((visited ?pos))
)

(:operator (!!unvisit ?pos)
nil
()
((visited ?pos))
nil
()
)

(:method (goto)
Expand Down

0 comments on commit aaf3177

Please sign in to comment.