Opa is a programming language created in 2011.
#230on PLDB | 13Years Old | 76Repos |
git clone https://github.com/MLstate/opalang
Opa is an open-source programming language for developing scalable web applications. It can be used for both client-side and server-side scripting, where complete programs are written in Opa and subsequently compiled to Nodejs on the server and JavaScript on the client, with the compiler automating all communication between the two. Opa implements strong, static typing, which can be helpful in protecting against security issues such as SQL injections and cross-site scripting attacks. Read more on Wikipedia...
jlog("Hello World")
/**
* To compile & run on port 8080:
* opa hello_syntax1.opa --
*/
server = Server.one_page_server(
"Hello, world",
-> (<h1>Hello, world</h1>)
)
Server.start(Server.http,
{ title: "Hello"
, page: function() { <h1>Hello, web!</h1> }
}
)
and as begin case client css database db do else end external forall function if import match module or package parser rec server then type val with xml_parser
Feature | Supported | Example | Token |
---|---|---|---|
Binary Literals | ✓ | ||
Integers | ✓ | ||
Floats | ✓ | ||
Hexadecimals | ✓ | ||
Octals | ✓ | ||
Conditionals | ✓ | ||
Functions | ✓ | ||
Strings | ✓ | "Hello world" | " |
Comments | ✓ | /* A comment */ | |
MultiLine Comments | ✓ | /* A comment */ | /* */ |
Print() Debugging | ✓ | jlog | |
Type Inference | ✓ | ||
Semantic Indentation | X |