vein
vein copied to clipboard
File-scope class member syntax
- [x] Proposed
- [x] Triage: Completed
- [ ] Prototype: not started
- [ ] Implementation: not started
- [ ] Specification: not started
Define file-scope class member
#space "space"
#use "vein/lang"
#mod public
// file foobar.vein
public Method(): void
{}
Ishtar view (transformation result)
#space "space"
#use "vein/lang"
public class foobar
{
public Method(): void
{}
}