Star
12
Fork
0
代码
介绍
代码
Issues
Pull Requests
流水线
Actions
讨论
Wiki
项目成员
6
分析
项目设置
Star
12
Fork
0
dev
nuttx-apps
/
examples
/
bastest
/
tests
/
test07.bas
下载
O
openvela-robot
Remove extra whitespace from files (
#43
)
dd83b93b
创建于
4月20日
历史提交
10 def fna(x) 20 if x=0 then r=1 else r=x*fna(x-1) 30 =r 40 print fna(7)