Skip to content

fedecech/rang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rang

Compiler and VM for rang language.

module Actor exposing *;

type Actor{
    string name;
    string sname;
    list<string> skills;
}

Actor __Actor__(string name, ...) => (Actor){.name = name, ...};

string [Actor as a]name() => a.name

//other file
import Actor;
from Actor import __Actor__, name;

Actor actor = __Actor__(name, ...);
actor.name();
[actor]name();

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published