├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md └── friends-core ├── .vscode ├── launch.json └── tasks.json ├── README.md └── src ├── .gitignore ├── FriendsLang.Compiler.Tests ├── Evaluating.Tests.fs ├── FriendsLang.Compiler.Tests.fsproj ├── Parsing.Tests.fs ├── Program.fs └── Test.fs ├── FriendsLang.Compiler ├── Domain.fs ├── Evaluating.fs ├── FriendsLang.Compiler.fsproj ├── Parsing.fs ├── Printing.fs └── Types.fs ├── FriendsLang.Repl.Tests ├── FriendsLang.Repl.Tests.fsproj ├── Program.fs └── Test.fs ├── FriendsLang.Repl ├── FriendsLang.Repl.fsproj └── Program.fs ├── FriendsLang.sln ├── publish.sh ├── scripts └── build-script-generator.fsx ├── test.sh └── watch.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/README.md -------------------------------------------------------------------------------- /friends-core/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/.vscode/launch.json -------------------------------------------------------------------------------- /friends-core/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/.vscode/tasks.json -------------------------------------------------------------------------------- /friends-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/README.md -------------------------------------------------------------------------------- /friends-core/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/.gitignore -------------------------------------------------------------------------------- /friends-core/src/FriendsLang.Compiler.Tests/Evaluating.Tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/FriendsLang.Compiler.Tests/Evaluating.Tests.fs -------------------------------------------------------------------------------- /friends-core/src/FriendsLang.Compiler.Tests/FriendsLang.Compiler.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/FriendsLang.Compiler.Tests/FriendsLang.Compiler.Tests.fsproj -------------------------------------------------------------------------------- /friends-core/src/FriendsLang.Compiler.Tests/Parsing.Tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/FriendsLang.Compiler.Tests/Parsing.Tests.fs -------------------------------------------------------------------------------- /friends-core/src/FriendsLang.Compiler.Tests/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/FriendsLang.Compiler.Tests/Program.fs -------------------------------------------------------------------------------- /friends-core/src/FriendsLang.Compiler.Tests/Test.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/FriendsLang.Compiler.Tests/Test.fs -------------------------------------------------------------------------------- /friends-core/src/FriendsLang.Compiler/Domain.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/FriendsLang.Compiler/Domain.fs -------------------------------------------------------------------------------- /friends-core/src/FriendsLang.Compiler/Evaluating.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/FriendsLang.Compiler/Evaluating.fs -------------------------------------------------------------------------------- /friends-core/src/FriendsLang.Compiler/FriendsLang.Compiler.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/FriendsLang.Compiler/FriendsLang.Compiler.fsproj -------------------------------------------------------------------------------- /friends-core/src/FriendsLang.Compiler/Parsing.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/FriendsLang.Compiler/Parsing.fs -------------------------------------------------------------------------------- /friends-core/src/FriendsLang.Compiler/Printing.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/FriendsLang.Compiler/Printing.fs -------------------------------------------------------------------------------- /friends-core/src/FriendsLang.Compiler/Types.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/FriendsLang.Compiler/Types.fs -------------------------------------------------------------------------------- /friends-core/src/FriendsLang.Repl.Tests/FriendsLang.Repl.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/FriendsLang.Repl.Tests/FriendsLang.Repl.Tests.fsproj -------------------------------------------------------------------------------- /friends-core/src/FriendsLang.Repl.Tests/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/FriendsLang.Repl.Tests/Program.fs -------------------------------------------------------------------------------- /friends-core/src/FriendsLang.Repl.Tests/Test.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/FriendsLang.Repl.Tests/Test.fs -------------------------------------------------------------------------------- /friends-core/src/FriendsLang.Repl/FriendsLang.Repl.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/FriendsLang.Repl/FriendsLang.Repl.fsproj -------------------------------------------------------------------------------- /friends-core/src/FriendsLang.Repl/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/FriendsLang.Repl/Program.fs -------------------------------------------------------------------------------- /friends-core/src/FriendsLang.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/FriendsLang.sln -------------------------------------------------------------------------------- /friends-core/src/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/publish.sh -------------------------------------------------------------------------------- /friends-core/src/scripts/build-script-generator.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/scripts/build-script-generator.fsx -------------------------------------------------------------------------------- /friends-core/src/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/test.sh -------------------------------------------------------------------------------- /friends-core/src/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vain0x/friends-lang/HEAD/friends-core/src/watch.sh --------------------------------------------------------------------------------