SubScript Akka

SubScript extensions for the Akka library

License

License

Categories

Categories

Akka Container Microservices Reactive libraries
GroupId

GroupId

org.subscript-lang
ArtifactId

ArtifactId

subscript-akka
Last Version

Last Version

1.0
Release Date

Release Date

Type

Type

jar
Description

Description

SubScript Akka
SubScript extensions for the Akka library
Project URL

Project URL

http://www.subscript-lang.org/
Project Organization

Project Organization

Delftware Technology
Source Code Management

Source Code Management

https://github.com/AndreVanDelft/scala.git

Download subscript-akka

How to add to project

<!-- https://jarcasting.com/artifacts/org.subscript-lang/subscript-akka/ -->
<dependency>
    <groupId>org.subscript-lang</groupId>
    <artifactId>subscript-akka</artifactId>
    <version>1.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.subscript-lang/subscript-akka/
implementation 'org.subscript-lang:subscript-akka:1.0'
// https://jarcasting.com/artifacts/org.subscript-lang/subscript-akka/
implementation ("org.subscript-lang:subscript-akka:1.0")
'org.subscript-lang:subscript-akka:jar:1.0'
<dependency org="org.subscript-lang" name="subscript-akka" rev="1.0">
  <artifact name="subscript-akka" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.subscript-lang', module='subscript-akka', version='1.0')
)
libraryDependencies += "org.subscript-lang" % "subscript-akka" % "1.0"
[org.subscript-lang/subscript-akka "1.0"]

Dependencies

compile (3)

Group / Artifact Type Version
org.subscript-lang : scala-library jar 2.11.2
org.subscript-lang : subscript jar 1.0
com.typesafe.akka : akka-actor_2.11 jar 2.3.4

Project Modules

There are no modules declared in this project.

This is the repository for the Scala Programming Language.

Also in this branch is the language extension named SubScript. For information about SubScript, you can visit the web site:

##SubScript Compiler issues The current SubScript compiler (a branch of scalac) is good enough to compile the given example programs, but there are some limitations and bugs:

  • Only language features used in the examples are present and tested. Other features, most notably communication, is TBD

  • here and there are not yet implicit values. Therefore you would need to write things like @{gui(there)}: instead of @gui

  • Local values and variables in scripts need both be typed and initialized. E.g., val b=true is not accepted yet; instead write val b:Boolean = true

  • The "?" syntax for actual output parameters, actual constrained parameters and actual adapting parameters are not yet completely handled. For the time being you may have to use alternative notations. E.g.,

?p           ==>   ActualOutputParameter     (p, (v:Int)=>p=v)
?p ?if(cond) ==>   ActualConstrainedParameter(p, (v:Int)=>p=v, (v:Int)=>cond)
??p          ==>   ActualAdaptingParameter   (_p)
Note the underscore in the latter line.
  • The compiler may crash on values in a script expression for which no implicit conversion to a script exist. This may for instance happen if you specify x in a script expression to denote an event that the x key is pressed, and if you forgot to provide an implicit script key(c:Char)

##Note on the repository layout Follows the file layout of the Scala repository. Two folders have been added for SubScript:

scala/
    src/                      All the source files of Scala.
        subscript/            The sources of the core SubScript library.
        subscript/examples    The sources of SubScript example applications

Note: the file subscript.swing.Scripts uses the SubScript syntax and can therefore not be compiled with the starr compiler; it needs to be compiled with the locker compiler or quick compiler.

SubScript examples are not built with the usual ant targets.

##Contributing to SubScript

Contributors are welcome. The official SubScript website is: www.subscript-lang.org.

As of writing there are no mailing lists, and bug and issue trackers.

Thank you!

The SubScript Team

Versions

Version
1.0