Skip to content

Programming language for the lighting processor and hardware logic design.

Notifications You must be signed in to change notification settings

arrseq/metal_programming_language

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Line Ending are LF \n not CLRF \r

The parser will not work if it reaches \r

Expression Syntax

With rust counterpart

Basic byte reference

&integer1     // &i8
&integer4     // &i32

// Parse steps
// - found '&', run Node::parse recursive.
// - found '&', run Node::parse again.
// - found non-keyworded, type is Reference(Reference(integer4)
&&integer4 // &i32

#integer4  // &mut i32

About

Programming language for the lighting processor and hardware logic design.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages