Skip to content
Maksym Stukalo edited this page Mar 15, 2025 · 2 revisions

Goals:

  • Extremely fast
  • Robust
  • Autoscale
  • Optimized for Web Development
  • Secure
  • Easy to learn
  • Simple programming language
  • Example application in few lines of code

Become the number 1 in cloud development

Language

  • Extremely Fast
  • Typed
  • Compiled
  • Short but enough std lib
  • Ease to learn

lang problems

  • Processor Cache invalidation in parallel systems
  • False sharing

Lang Details

  • Stackless args passing. Only registers and the limit in 6 args. If you need more then 6 - use structures.
  • Pattern-matching, guards
  • No variables, only constants
  • Parallelism with actor model and shared memory in read only mode

Clone this wiki locally