literature

An Iseren-Based Programming Language

Deviation Actions

kwuus's avatar
By
Published:
254 Views

Literature Text

Without Annotations



xiilas ak’í.ak’íwj;
gámisdáa kilgad()
{
   k’aalanggd("Kilslaay, Hlangwáay!");
}

With Annotations



/* This program prints a
  hello world message
  to the console.  */


//import std.stdio; std(standard)=ak’i;wj=waagii(input)/jii'axwii(output)
xiilas ak’í.ak’íwj;
//void main() void=gámisdáa(doesn't return);main=kilgad
gámisdáa kilgad()
{
//writeln("Hello, World!"); writeln=k’aalanggd(K’aalang(write) + Gaagiid(line));
   k’aalanggd("Kilslaay, Hlangwáay!");
}
The programming language is translated directly from the D Programming Language. I've always liked the language, but it suffers from a lack of resources, like good IDEs and toolkits that just make programming in other languages more convenient.
© 2014 - 2024 kwuus
Comments1
Join the community to add your comment. Already a deviant? Log In
ClockwerkMao's avatar
All you really need is something to track your parens, and possibly semicolons.