Maybe I'm overlooking something... We currently have
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
or
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
But they all test the condition BEFORE beginning the loop. Is there a way to do this right before reaching the end of the loop? Like
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
			
			
			
				B4X:
			
		
		
		Do while condition=true
(my code)
loop
	or
			
				B4X:
			
		
		
		Do until condition=true
(my code)
loop
	But they all test the condition BEFORE beginning the loop. Is there a way to do this right before reaching the end of the loop? Like
			
				B4X:
			
		
		
		Do
(my code)
Until condition=true