Интерпретатор ЯП Tick-tock, v2.0
Posted on

Интерпретатор языка программирования Tick-tock.
Major release. Support bitwise operations and fix parsing of hexadecimal integers.
Change Log
- support expression evaluation:
- support operations:
- bitwise operations:
- shifts:
- left shift (
<<); - right shift (
>>); - unsigned right shift (
>>>);
- left shift (
- bitwise conjunction (
&); - bitwise exclusive disjunction (
^); - bitwise disjunction (
|);
- shifts:
- bitwise operations:
- support operations:
- fix bugs:
- fix parsing of hexadecimal integers;
- fix synchronous waiting in tests of the runtime package;
- examples:
- add the comment in the example with dining philosophers;
- add the new example with the Mersenne Twister.
Описание
Репозиторий
Ссылка: https://github.com/thewizardplusplus/tick-tock/tree/v2.0.
Содержание: код, документация, инструменты (подсветка синтаксиса) и примеры.
Лицензия:
- кода — MIT;
- документации — CC BY 4.0.