Git Product home page Git Product logo

v1.3.1's Introduction

The Hascal Programming Language

Website | Docs | Gitter | LinkedIn

Hascal is a general-purpose open source programming language that makes it easy to build simple,optimal, reliable, and efficient software.

NOTE: Hascal is currently under development.

Features

  • Cross Platform (Linux, Windows, MacOS, BSD)
  • Fast & Powerful
  • Easy to learn
  • C-Family syntax, inspired by Swift, TypeScript
  • Compiles to binary with dmd
  • Native binaries with no dependency
  • Garbage Collection and Manual Memory Allocation
  • Compatible with D\C\C++\Objective C

Examples

Hello World :

function main() : int {
    print("Hello World!")
    return 0
}

Read from stdin :

function main() : int{
    print("Enter your name :")
    var name = ReadStr()
    print("Hi,",name)
    return 0
}

HTTP Response :

use http

function main(): int {
    print(get("google.com"))
    return 0
}

System Command :

use os

function main() : int {
    system("gcc --version")
    return 0
}

You can see more Hascal examples in examples folder.

Documentation

You can find documentations on installation and using Hascal, Here

Build from source

See build help page

Contributions

Any contribution is welcome :)

graph

License

The compiler and the standard libraries are licensed under the "GNU general public license v3", Read the License for more details.

About

Copyright ©2019-2022 Hascal Foundation,
all rights reserved.

forthebadge

v1.3.1's People

Contributors

bistcuite avatar

Watchers

 avatar Ashkan avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.