We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2941fb commit 5262c9eCopy full SHA for 5262c9e
src/intrinsics.jl
@@ -138,23 +138,8 @@ end
138
If the backend does not support printing,
139
define it to return `nothing`.
140
"""
141
-@generated function _print(items...)
142
- str = ""
143
- args = []
144
-
145
- for i in 1:length(items)
146
- item = :(items[$i])
147
- T = items[i]
148
- if T <: Val
149
- item = QuoteNode(T.parameters[1])
150
- end
151
- push!(args, item)
152
+function _print end
153
154
- return quote
155
- print($(args...))
156
157
-end
158
159
160
0 commit comments