Eas (Easy Application Script)
is an excellent
programming language:
- extremely efficient to write
- highly comfortable
- very clear to read
Eas 4B (Eas for Browsers)
can replace pretty much all JavaScript,
it's much
faster,
safer and
more
comfortable programming
and offers many
powerful features
that are simply unknown to JavaScript.
This website tells you all about Eas,
directly from the developer.
If you already are an Eas programmer,
use the Search (
Esc) for
rapid reference.
For a first impression,
compare ...
the output:
Hello World!
And another line ... that continues.
10...
9...
8...
7...
6...
5...
4...
3...2...1...
START!
Eas:
!
SAY:"Hello World!"/
SAY:"And another line ..."
SAY:" that continues."//
@10..1
SAY:";@..."
?@#3,2
BR!
/
/
SAY:"START!"
/
... to the following common languages:
JavaScript:
document.write("Hello World!\n")
document.write("And another line ...")
document.write(" that continues.\n\n")
for(i=10;i>0;i--){
document.write(i+"...")
if(i!=3&&i!=2)document.write("\n")
}
document.write("START!")
PHP:
<?php
echo"Hello World!\n";
echo"And another line ...";
echo" that continues.\n\n";
for($i=10;$i>0;$i--){
echo"$i...";
if($i!=3&&$i!=2)echo"\n";
}
echo"START!";
?>
C:
#include <stdio.h>
int main(void){
int i;
puts("Hello World!");
printf("And another line ...");
printf(" that continues.\n\n");
for(i=10;i>0;i--){
printf("%d...",i);
if(i!=3&&i!=2)putc("\n");
}
printf("START!");
return 0;
}
C++:
#include <iostream>
int main(){
int i;
cout<<"Hello World!\n";
cout<<"And another line ...";
cout<<" that continues.\n\n";
for(i=10;i>0;i--){
cout<<i<<"...";
if(i!=3&&i!=2)cout<<"\n";
}
cout<<"START!";
}
Pascal:
Program HW2;
Var
i:Byte;
Begin
WriteLn("Hello World!");
Write("And another line ...");
WriteLn(" that continues.");
WriteLn("");
For i:=10 downto 1 do
Write(i,"...");
If i<>3 and i<>2 then WriteLn("");
End;
Write("START!");
End;
BASIC:
10 PRINT "Hello World!"
20 PRINT "And another line ...";
30 PRINT " that continues."
40 PRINT ""
50 FOR I=99 TO 1 STEP -1
60 PRINT I;"...";
70 IF I<>3 AND I<>2 THEN PRINT ""
80 NEXT
90 PRINT "START!";
Use the right cursor key
→
to go to the next page
— or jump to another topic
via the Table of Contents (hotkey:
Esc).