You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just thought that an autofix for something like this would be awesome:
std.debug.print("this is a number: {d}\n", 13)
->
std.debug.print("this is a number: {d}\n", .{13});
I have the python print() statement in muscle memory and I find it nearly impossible to retrain myself to write the correct Zig syntax for std.debug.print. OTOH, an editor might fix it easily.
The text was updated successfully, but these errors were encountered:
Just thought that an autofix for something like this would be awesome:
I have the python
print()
statement in muscle memory and I find it nearly impossible to retrain myself to write the correct Zig syntax forstd.debug.print
. OTOH, an editor might fix it easily.The text was updated successfully, but these errors were encountered: