On a quest for agency in Bellairs

Compare changes

Choose any two refs to compare.

Changed files
+4 -5
mvp
+2 -1
README.md
···
- Add your SSH key to the tangled.sh login under 'Settings'.
-
- use port 2222 for the SSH !!! Put the following into `~/.ssh/config`:
+
- use port 2222 for the SSH !!!
+
Put the following into `~/.ssh/config`:
```
Host git.recoil.org
-1
mvp/.gitignore
···
-
_build
+2 -3
mvp/bellairs.schema
···
interface Directory {
# Represents a directory in the filesystem
-
+
list @0 () -> (entries :List(Entry));
# Lists all entries in the directory
···
interface File {
# Represents a file in the filesystem
-
+
size @0 () -> (size :UInt64);
# Returns the size of the file in bytes
···
# Reads data from the file, optionally starting at offset and reading up to len bytes
# Default is to read the entire file
}
-