Skip to content

Releases: HeavyNotFat/toylang

ToyLang v1.2.4.8

20 Oct 09:02
dff1afa

Choose a tag to compare

紧急Bug修复 Bugs Fixed

  • int 始终为0
  • 一些小问题
  • int always be 0
  • some problems

更新预告 To be update

  • secrets
  • secrets library

  • 参名对参数传入模式 😶
  • 指针变量
  • 复合参数
  • References-to-parameter passed mode
  • Pointer variable
  • Compliex variable

ToyLang v.1.2.4

20 Oct 03:44
09a2b15

Choose a tag to compare

Bug 修复 Bug Fixed

  • 很多很多bug
  • 修复簇里面不能包含有元素的数组
  • IDLE 不能运行
  • Many Many bugs
  • Fixed array cannot include elements in cluster
  • IDLE cannot run

内置库更新 Builtin-Library Update

  • random 库支持小数
  • random library support decimal

IDLE更新 IDLE Update

  • 新增进制高亮
  • Add base highlights

一些细节调整

Some details changed

更新预告 To be update

  • secrets
  • secrets library

  • 参名对参数传入模式 😶
  • 指针变量
  • 复合参数
  • References-to-parameter passed mode
  • Pointer variable
  • Compliex variable

ToyLang v1.2.3

19 Oct 10:04
518c77e

Choose a tag to compare

语法更新 Grammar Update

  • 新增global关键字声明全局变量
  • 更改timestamp内置函数,现可以获取指定时间的时间戳
  • Add global keyword to define a global variable
  • Change timestamp builtin-function, it's able to get specific timestamp

内置库更新 Builtin-Function Update

  • 新增random随机数库
  • Add random random library

Bug 更新

  • 修了很多很多bug!
  • Fix many many many bugs !!!!

ToyLang v1.2.1

19 Oct 02:45
bd53355

Choose a tag to compare

语法更新 Grammar Update

  • 隐藏变量的定义从单个下划线_变为双下划线__
  • 新增private关键字建立私有数据
  • 删除跳过空循环速度优化功能
  • Add private keyword to build private data
  • Change single underline _ to double underline __ when defining hiden variable
  • Delete pass empty repeat speed optimizing ability

Bug 修复

  • 修复空簇报错
  • 修复IDLE语法高亮闪烁
  • Fix empty cluster raise a Python error
  • Fix IDLE grmmar highlights flush often

ToyLang v1.2.0

18 Oct 11:37
f692891

Choose a tag to compare

语法更新 Grammar Update

  • 新增进制 (二进制, 八进制, 十六进制)
  • 支持位运算符('&' 与位, '|' 或位, '^' 异或, '<<' 左位, '>>' 右位)
  • 将与、或的分别改为&&||
  • 新增隐藏变量概念
  • Add base (Binary, Baseling, Hexadecimal)
  • Support bitwise operators ('&' and bitwise, '|' or bitwise, '^' xor bitwise, '<<' left bitwise, '>>' right bitwise)
  • Change and, or character pos to &&, ||
  • Add hiden variable

Bug修复 Bug Fixed

  • 其他已知bug
  • 巨大数值运算报错
  • Huge number computing raises a Python error
  • Other has been known bugs

ToyLang v1.1.7

13 Oct 03:29
ff828e5

Choose a tag to compare

语法更新 Grammar Updated

  • 支持可选参数
  • Support Optional Parameter

Bug修复 Bug Fixed

  • 修复空循环报错
  • Fixed empty repeat raise a python error

ToyLang v1.1.6

12 Oct 11:22
e28a321

Choose a tag to compare

文件更新 File Update

  • 新增delete_pycache.py文件删除python编译字节码
  • Add delete_pycache.py file to delete python compliex bytes codes

Bug更新 Bug Update

  • 修复if bugs (编辑器模式时不包含else则无法运行;编辑器模型时在函数elseif无法使用return或强制退出)
  • Fix if bugs (Editor mode cannot run unless use 'else'; editor mode elseif cannot use return or exit directly)

ToyLang v1.1.5

09 Oct 16:09
d434222

Choose a tag to compare

其他更新

  • 新增IDLE编辑器
  • Add IDLE Editor

代码更新

  • 新增 idle_call_function_table 的变量
  • Add idle_call_function_table variable

ToyLang v1.1.1

07 Oct 00:56
30afde6

Choose a tag to compare

bug修复

  • 修复在包罗符中定义变量时不能包含‘_’
  • Fix including pos cannot define variable include '_'

ToyLang v1.1.0

28 Sep 08:08
c109931

Choose a tag to compare

语法更新Grammar Update

  • 新增'foriter'关键字迭代数组
  • 新增'切片'获取元素
  • Add 'foriter' keyword to iterate Array
  • Add 'Subscripts' operation to get element

其他更新 Other Update

  • 修复Cluster的bug
  • Fix Cluster bugs

示例更新 Example Update

  • 更新了循环斐波那契列数的实力
  • New Update example for fibonacci with repeat