FeatherweightTypeInference/README.md
Andreas Stadelmeier abe4f78490 Fix Type in README
2022-07-23 09:36:37 +02:00

57 lines
693 B
Markdown

# Typeinference for Featherweight Java
## Getting started
[Try it here](https://janulrich.github.io/FeatherweightTypeInference/)
## Building
```sbt fullLinkJS```
### Input Examples
```
class Identity extends Object{
id(a){
return a;
}
}
```
```
class Overloading extends Object{
m(a, b){return a;}
m(a,b){return b;}
}
class TestOverloading extends Object{
test(a){
return new Overloading().m(this,a);
}
}
```
```
class List<A extends Object> extends Object{
A head;
List<A> tail;
add( a){
return new List(a, this);
}
get(){
return this.head;
}
}
class PrincipleType extends Object {
function(a){
return a.add(this).get();
}
}
```