Just a little fun..

BlitzMax Forums/BlitzMax Programming/Just a little fun..

SuperStrict

Framework brl.StandardIO


Startup()

Function Startup()
	
	Hello()
	
	Function Hello()
		
		Print "Hello,"
		
		World()
		
		Function World()
			
			Print "world."
			
			AnotherOne()
			
			Function AnotherOne() ' !!!!
				
				Print "This is what I like to call"
				
				SomethingFunny()
				
				Function SomethingFunny()
					
					Print "something funny.."
					
					'kekeke
					Hello()
					
				End Function
				
			End Function
			
		End Function
		
	End Function
	
End Function


:D

I need to apoligize to my output now.