mirror of
				https://github.com/vim/vim.git
				synced 2025-10-31 09:57:14 -04:00 
			
		
		
		
	
		
			
	
	
		
			21 lines
		
	
	
		
			187 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
		
		
			
		
	
	
			21 lines
		
	
	
		
			187 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
|   | vim9script | ||
|  | # Vim9-script expressions | ||
|  | 
 | ||
|  | 
 | ||
|  | # Command {expr} arguments | ||
|  | 
 | ||
|  | if true | ||
|  |   echo true | ||
|  | elseif false | ||
|  |   echo false | ||
|  | endif | ||
|  | 
 | ||
|  | while true | ||
|  |   break | ||
|  | endwhile | ||
|  | 
 | ||
|  | def Foo(): bool | ||
|  |   return true | ||
|  | enddef | ||
|  | 
 |