Skip to content

Commit

Permalink
Remove from master *.igo files and added TODO.md
Browse files Browse the repository at this point in the history
From now on `master` will contain only go files compiled from igo.

iGo source code will live in a separate branch, whenever we are ready
for a new release we just simply compile and put new go files into
master, this should work quite well for the golang "module" system.
  • Loading branch information
DAddYE committed Mar 17, 2014
1 parent cf10522 commit 8b880da
Show file tree
Hide file tree
Showing 24 changed files with 36 additions and 13,793 deletions.
36 changes: 36 additions & 0 deletions TODO.md
@@ -0,0 +1,36 @@
## TODO

- Better handling of '}', avoid new lines


### Scoped blocks

```
{
scopedStmtList
}
```

should be parsed with the `do` notation like:

```
do
scopedStmtList
```

### Intersperse comments

```
if /* make it better */ true { }
```

Will generate:

```
if
# make it better
true
```

which currently isn't valid igo.

0 comments on commit 8b880da

Please sign in to comment.