017_quiz2.patch 323 B

12345678910111213141516
  1. 12c12
  2. < const std = import standard library;
  3. ---
  4. > const std = @import("std");
  5. 14c14
  6. < function main() void {
  7. ---
  8. > pub fn main() void {
  9. 19c19
  10. < ??? (i <= stop_at) : (i += 1) {
  11. ---
  12. > while (i <= stop_at) : (i += 1) {
  13. 23c23
  14. < std.debug.print("{}", .{???});
  15. ---
  16. > std.debug.print("{}", .{i});