This is intended to be an ongoing clone from the SML# repository at githug https://github.com/smlsharp/smlsharp The Project Homepage is found here: https://www.pllab.riec.tohoku.ac.jp/smlsharp/
|
3 years ago | |
---|---|---|
benchmark | 4 years ago | |
man | 5 years ago | |
precompiled | 4 years ago | |
sample | 4 years ago | |
src | 4 years ago | |
tests | 4 years ago | |
CONTRIBUTING.md | 4 years ago | |
Changes | 4 years ago | |
INSTALL | 9 years ago | |
LICENSE | 4 years ago | |
Makefile.in | 4 years ago | |
README.md | 3 years ago | |
config.guess | 4 years ago | |
config.h.in | 4 years ago | |
config.mk.in | 5 years ago | |
config.sub | 4 years ago | |
configure | 4 years ago | |
configure.ac | 4 years ago | |
depend.mk | 4 years ago | |
files.mk | 4 years ago | |
install-sh | 4 years ago | |
mkdepend | 4 years ago | |
precompile.mk | 4 years ago | |
stamp-h.in | 13 years ago |
SML# is a new generation of the Standard ML family of programming languages being developed at Research Institute of Electrical Communication, Tohoku University. Its design goal is to provide a moderate but practically important extensions based on recent advance in type theory for ML-style languages while maintaining the compatibility of the Definition of Standard ML.
The main features of SML# include the following.
The type system of SML# fully supports record polymorphism. Moreover, its type directed compiler generates efficient code for polymorphic record operations.
SQL expressions themselves are integrated as polymorphically-typed first-class citizens. This allows the programmer to construct SQL queries through ML's higher-order functions and access directly to database management systems with enjoying type safety.
SML# program is highly interoperable with C. For example, SML# program can directly link with C libraires and call C functions without any data conversion.
By writing an interface file, each source file is compiled separately into an object file in the standard format. The separately compiled object files are then linked together into an executable program.
The non-moving GC and direct C interface allow SML# program to directly call the Pthread and MassiveThreads library. As far as the thread libraries support multicore CPUs, SML# program automatically obtains multithread capability on multicore CPUs.
SML# is an extension of the Definition of Standard ML. It supports the full set of the language and the required set of the Standard ML Basis Library. The programmer can enjoy the new features with a rich collection of existing library for Standard ML.
SML# works on x86_64 (amd64) Linux and macOS.
The following libraries are required:
After setting up the above libraries, you can build and install the SML# compiler and tools in the following popular three steps:
./configure && make && make install
See the SML# document for details.
The SML# Compiler and its supporting tools are open source software being distributed under the MIT license, as described in the file "LICENSE" included in this distribution package.
SML# contains the following third-party's source code:
All of them are software distributed under open-source licenses compatible with the SML# license. The SML# source code distribution includes the license of each of them.
The SML# document is available from the SML# website. It contains the tutorial on Standard ML, the tour on the SML#'s new features, and the reference manual of the compiler and its supporing tools.
There are places for developers and users to have talks about SML#.
Issues and Pull requests are always welcome on GitHub. See the "Development" page of the SML# website for details.
++++++++++++++++++++++++++++++++++++++
This is an ongoing clone of the SML# repository at Githug https://github.com/smlsharp/smlsharp
Project Homepage: https://www.pllab.riec.tohoku.ac.jp/smlsharp/