We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f003ae0 commit 4dd81d6Copy full SHA for 4dd81d6
1 file changed
std/io.jl
@@ -2,6 +2,6 @@ module "io"
2
3
printf :: (s: string) i32
4
5
-print :: (s: string) void {
6
- printf(s);
+print :: (s: string) i32 {
+ return printf(s);
7
}
0 commit comments