Articles

Variadic Parameters
Thursday March 07 15:04:26 2019

A variadic parameter accepts zero or more arguments of different type. A variadic paramter indicates that the block or method can be called with different number of arguments of different type else the type is specified then only instance of the type can be passed as arguments.

In The Kitchen
Thursday March 07 15:02:06 2019

A lot of work has been going on since the last release on the 5th of August. Since the last release ( 0.3.36 ), the simple-lang community have been working endlessly and tiredlessly towards the next release. Let's see what has been going on behind the scenes

Hello World
Thursday March 07 14:46:22 2019

Welcome to [simple-lang's](https://github.com/simple-lang)! official blog. In this mini blog, updates, new features and minor code articles will be written here. This will be an introductory, welcoming post.

Writing a C extension (Dynamic Module) to interact with simple-lang from C/C++
Monday March 11 21:42:18 2019

simple-lang can be extended by adding function from C programming language or C++. There are several predefined APIs written in simple-lang VM that can be used to interact with our program. There can be various reason to create a dynamic modules which can include optimizing simple-lang with the speed of C/C++, exporting a native library with no need to re-write in simple-lang e.t.c