mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	
		
			
	
	
		
			9 lines
		
	
	
	
		
			145 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			9 lines
		
	
	
	
		
			145 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 
								 | 
							
								function assert(x) { if (!x) throw 1; }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								try {
							 | 
						||
| 
								 | 
							
								    assert(10 % 3 === 1);
							 | 
						||
| 
								 | 
							
								    console.log("PASS");
							 | 
						||
| 
								 | 
							
								} catch (e) {
							 | 
						||
| 
								 | 
							
								    console.log("FAIL: " + e);
							 | 
						||
| 
								 | 
							
								}
							 |