mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			164 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			164 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| 
 | |
| 
 | |
| C = terralib.includec("stdio.h")
 | |
| 
 | |
| terra char(a : &int8) : int8
 | |
| 	return a[0]
 | |
| end
 | |
| terra foobar()
 | |
| 	var a = arrayof(int8,char("a"),0)
 | |
| 	C.printf("%s\n",a)
 | |
| end
 | |
| foobar() |