文件名称:blz-ospl:开源编程语言
文件大小:810KB
文件格式:ZIP
更新时间:2024-05-28 18:13:23
java language programming-language library script
blazingkin开源编程语言(blz-ospl) 稳定的 - 每晚- blz是使用JVM实现的一种易于使用,快速且可移植的脚本语言。 目的是为程序员提供高水平的抽象,以提高开发人员的速度。 入门 上提供了安装语言的说明 范例程式码 你好,世界 print("Hello World!") 阶乘 :main print("What number would you like the factorial of?") input = number_input() print(fact(input)) end :fact(num) if num <= 1 1 # The last line of a method is automatically returned else num * fact(num - 1) end end 构造函数/对象 :main #