2 comments

[ 0.20 ms ] story [ 23.2 ms ] thread
Hi HN!

This is my new programming language, Parlan, with a simple philosophy:

- parlan is not trying to be the next "X-language killer". - parlan is not trying to be the next standard to write software. - parlan just exists, if you want to use it, great! if not, that totally cool too.

i'm currently searching feedback about my syntax and/or my implementation.

The compiler is currently written in Rust, and transpiles to C.

Thank you in advance!

This is a simple hello world program in Parlan:

  extern func printf(fmt: str, ...): int;
  
  func main(): int {
    printf("Hello, World!\n");
    return 0;
  }