Skip to content

Commit

Permalink
docs: removing wip message from readme
Browse files Browse the repository at this point in the history
  • Loading branch information
BRonen authored Feb 14, 2024
1 parent 2d69a7b commit 6705552
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# typoggers-lang

WIP

## Examples

Variable Assignment

```haskell
Expand Down Expand Up @@ -52,9 +48,11 @@ apply double
Unions and intersections

```haskell
type Id = (String -> String) & (Int -> Int) & (Bool -> Bool) in
let id: Id = (x: String | Int | Bool) => x in
id
type Any = (String | Int | Bool) & (String | Int | Bool) in
let i: Any = "hello world" in
let j: Any = 1234 in
let k: Any = True in
0
```

Logical operators
Expand Down

0 comments on commit 6705552

Please sign in to comment.