1 pointby Santiago-Lopez2 hours ago1 comment
  • Santiago-Lopez2 hours ago
    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!

    • Santiago-Lopez2 minutes ago
      This is a simple hello world program in Parlan:

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