RudyFisher7 / KoiScript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CodeScene general CodeScene Code Health

KoiScript

A simple scripting language designed for extending C++ applications at runtime, specifically with video game scripting in mind. Not to be mistaken for the stunning koilang (tsevhu): https://youtu.be/bZJa-C3lsjg?si=kISUGdZW9MHziIP9.

Project Status

Not yet implemented.

  • ...

Built-In Functions

special

  • assign
  • print

variable and function info

  • size

logical

  • and
  • or
  • is_true
  • not
  • equals
  • greater_than
  • lesser_then
  • greater_than_or_equal_to
  • lesser_than_or_equal_to

arithmetic

unary

  • abs
  • neg
  • floor
  • round
  • ceil

binary

  • add
  • sub
  • mul
  • div
  • mod

unary bitwise

  • shift_left
  • shift_right
  • bit_or
  • bit_xor
  • bit_and
  • bit_not

control

  • if
  • while

About

License:MIT License


Languages

Language:C++ 98.4%Language:CMake 1.6%