Package Details: hascal-git v1.3.9.r34.g24b4ab5-1

Git Clone URL: https://aur.archlinux.org/hascal-git.git (read-only, click to copy)
Package Base: hascal-git
Description: Hascal is a general purpose and open source programming language designed to build optimal, maintainable, reliable and efficient software.
Upstream URL: https://github.com/hascal/hascal
Keywords: hascal language programming-language
Licenses: MIT
Conflicts: hascal-git
Provides: hascal-git
Submitter: mmdbalkhi
Maintainer: mmdbalkhi
Last Packager: mmdbalkhi
Votes: 0
Popularity: 0.000000
First Submitted: 2022-03-17 12:49 (UTC)
Last Updated: 2022-07-17 16:20 (UTC)

Latest Comments

mmdbalkhi commented on 2022-05-29 16:11 (UTC) (edited on 2022-05-29 16:12 (UTC) by mmdbalkhi)

v1.3.9-rc.1
Changes
  • upgrade importing system
  • some changes in self-hosted compiler(NOTE: self-hosted compiler is not ready yet)
Bug fixes
  • fix import bug when importing one package in multiple files
  • fix self-hosted bugs

mmdbalkhi commented on 2022-05-25 09:20 (UTC) (edited on 2022-05-25 09:21 (UTC) by mmdbalkhi)

v1.3.9-rc
Changes
Bug fixes
  • fix http library bug
  • fix cpp importing bug

mmdbalkhi commented on 2022-05-15 10:41 (UTC)

v1.3.9-beta
New features:
  • passing functions as arguments
function f(x: int): int {
    return x + 1
}

function g(func:Function[int]int): int {
    return func(1)
}
  • add static variables, See this example
  • add only_compile config option
Changes
  • upgrade importing system
Bug fixes
  • fix pyinstaller build issue

mmdbalkhi commented on 2022-05-01 20:14 (UTC)

v1.3.9-alpha.1 :Pre-release:
  • add download,upload,post functions to http library
  • https support for http library
  • add windows library(that includes windows.h)
  • add browser library to open urls in default browser(now only supports windows)
Bug fixes
  • fix linker flag import bug in cuse statement