Skip to content

Kymera is a new programming language created to have a simple syntax and powerfull to be what you need o do.

License

Notifications You must be signed in to change notification settings

CodeAkio/kymera-lang

Repository files navigation

description
Welcome to the kim-lang!

Welcome

Kim lang é um protótipo de uma nova linguagem de programação brasileira que usa como base outras linguagens como: Python 3, Ruby, Elixir, Go, Kotlin, Dart, Julia, Crystal, Nim, Rust, Swift e TypeScript.

package main

struct Post {
    id     int
    author string
    title  string
    body   string
}

fun main() {
    var post = Post(0,
                    "Chewbacca",
                    "Programming language",
                    "Lorem ipsum dolor sit amet, consectetur adipiscing elit...")

    writeln("The title is: ${post.title}
            The author is: ${post.author}
            The body before: ${post.body}")

    post.body = "Sed pharetra turpis vehicula orci sodales, interdum blandit libero scelerisque."
    writeln("The body after: ${post.body}")
}
# The title is: Programming language
# The author is: Chewbacca
# The body before: Lorem ipsum dolor sit amet, consectetur adipiscing elit...
# The body after: Sed pharetra turpis vehicula orci sodales, interdum blandit libero scelerisque.

About

Kymera is a new programming language created to have a simple syntax and powerfull to be what you need o do.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published