syntax: back to -> for return type, no more =>

This commit is contained in:
Andrew Kelley
2016-01-25 17:06:19 -07:00
parent fb85d3a0a2
commit 50854226a6
14 changed files with 180 additions and 180 deletions

View File

@@ -2,10 +2,10 @@ import "std.zig";
// purposefully conflicting function with main.zig
// but it's private so it should be OK
fn private_function() => {
fn private_function() {
stdout.printf("OK 1\n");
}
pub fn print_text() => {
pub fn print_text() {
private_function();
}