qunwang6.github.io - 群点科技

Description: 群点科技业务:网站开发、SEO优化、触动精灵、触摸精灵、脚本定制。

seo优化 (5779) dictionary (778) 词典 (68) 触动精灵 (2) 触摸精灵 (2) 群点科技 (1) 脚本定制 (1)

Example domain paragraphs

无言独上西楼,月如勾。

1 2 3 ( defun sayHello() ( format t "Hello, world!" )) ( sayHello ) References Setting up a Common Lisp environment on OS X with Sublime Text 3 | Mark Trapp Factorial in Programs 发表于 2017-03-20 | 分类于 algorithm

1 2 3 4 5 6 7 8 9 10 11 function factorial (n) if (n == 0 ) then return 1 else return n * factorial(n - 1 ) end end for n = 0 , 16 do io . write (n, "! = " , factorial(n), "\n" ) end output: