Skip to content

ayoung1/NamePending

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

NamePending

A quick selfstudy into how language and compilers work

In the NamePending programming language everything is expressed as a statement.

Hello World!

A hello world program is simple enough. Create a main lambda and call the print line function

main = lambda(arglist){
	println('Hello World!');
};

Alternatively, lambda can be replaced with λ for a shorthand lambda declaration

main = λ(arglist){
	println('Hello World!');
};

Conditionals

NamePending uses the if then else style of if statement

if (conditional) 

Loops

About

A quick selfstudy into how language and compilers work

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages