Ezhil-Language-Foundation / Ezhil-Lang

எழில் - ஒரு தமிழ் நிரலாக்க மொழி; தமிழ் மாணவர்களுக்கு இது முதல்முறை கணிப்பொறி நிரல் ஏழுத உதவும் (Ezhil, is a fun Tamil programming language for K-12).
http://ezhillang.org/
GNU General Public License v3.0
170 stars 46 forks source link

add substring function #180

Open arcturusannamalai opened 8 years ago

arcturusannamalai commented 8 years ago

add substring function to do things like,

x = "Ezhil" y = substr(x,2) # y-> "hil" z = substr(x,2,3) # z -> "hi"