-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finally close #328. This took deep meditation.
Sorry that took so long, Jeff.
- Loading branch information
1 parent
682fd27
commit cfcc147
Showing
2 changed files
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ print(x...) = for i=x; print(i); end | |
println(args...) = print(args..., '\n') | ||
|
||
show(s::String) = print_quoted(s) | ||
showln(x) = (show(x); println()) | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
StefanKarpinski
Author
Member
|
||
|
||
(*)(s::String...) = strcat(s...) | ||
(^)(s::String, r::Integer) = repeat(s,r) | ||
|
This line seems to be causing #577. I don't know why yet, but uncommenting it solves the problem