mirror of
				https://codeberg.org/ziglings/exercises.git
				synced 2025-11-03 20:25:37 +00:00 
			
		
		
		
	Add the update-patches.py tool. Update all the patches, so that the files are up-to-date and use the same patch file format.
		
			
				
	
	
		
			15 lines
		
	
	
		
			386 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			386 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
68c68
 | 
						|
<     var first_line1: *const [16]u8 = ???;
 | 
						|
---
 | 
						|
>     var first_line1: *const [16]u8 = undefined;
 | 
						|
71c71
 | 
						|
<     var first_line2: Err!*const [21]u8 = ???;
 | 
						|
---
 | 
						|
>     var first_line2: Err!*const [21]u8 = Err.Cthulhu;
 | 
						|
80,81c80,81
 | 
						|
< fn printSecondLine() ??? {
 | 
						|
<     var second_line2: ?*const [18]u8 = ???;
 | 
						|
---
 | 
						|
> fn printSecondLine() void {
 | 
						|
>     var second_line2: ?*const [18]u8 = null;
 |