aboutsummaryrefslogblamecommitdiff
path: root/bc_funcs/misc.bc
blob: 7c0a9db08045e01d1d2865b0c2da10aa27d521c5 (plain) (tree)
1
2
3
4
5
6
7
8
9
                        


                                


                                    
                                          
 
define void findseed() {
	auto x, i

	for (i = 0; i < 12; i++)
		if (rand() % 10 < 1)
			x++

	print "Your seed is a ", x, " eye"
}