Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 507 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 507 Bytes

Nutt

Nutt can be called a simple programming language that allows you to write code in functional or procedural paradigms.

Nutt features:

  • Hybrid typing;
  • Polymorphic programming;
  • Available custom types at runtime;
  • Passing parameters by value;
  • Easy learning curve;
  • Simple syntax similar to Lua, Scala and - a bit - Haskell;
  • First-class functions;
  • Extended C-like structures (records).
module main imports native.sys.io.output.say

val main=()==>say("Hello, world!")

main()

end