Coder Social home page Coder Social logo

bialang / bia Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 23.32 MB

Bia [baɪə] is an embedded scripting language for C/C++

Home Page: https://bialang.github.io

License: BSD 3-Clause "New" or "Revised" License

CMake 0.14% C++ 99.71% Python 0.02% C 0.10% Dockerfile 0.01% TeX 0.02%
cpp cpp11 scripting-language embedded-language bia c

bia's People

Contributors

terrakuh avatar

Watchers

 avatar  avatar

bia's Issues

Argument passing bug

import io
import sys

fun a(x) {
	io.print("ha", x)
}

a("hi")

Expected: ha hi
Actual: ha ha

Add delete statement

Add delete statement for removing a local variable. Example:

let x = 99
io.print(x)
delete x
io.print(x) // x undefined

And delete from:

let x = {"hi": 2}
io.print(x["hi"])
delete "hi" from x
io.print(x["hi"]) // undefined

Add ICU support

Implement automatic ICU building/searching and enabling the additional features.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.