├── .github └── workflows │ └── main.yml ├── .gitignore ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ └── xcschemes │ ├── NAL.xcscheme │ ├── NARS-Swift-Package.xcscheme │ ├── NARS-Swift.xcscheme │ ├── NARS.xcscheme │ ├── Narsese.xcscheme │ └── nar.xcscheme ├── Code.playground ├── Pages │ ├── Esperanto.xcplaygroundpage │ │ └── Contents.swift │ ├── Experimental.xcplaygroundpage │ │ └── Contents.swift │ ├── Language.xcplaygroundpage │ │ └── Contents.swift │ ├── Multiplication 2.xcplaygroundpage │ │ └── Contents.swift │ ├── Multiplication.xcplaygroundpage │ │ └── Contents.swift │ └── Sample.xcplaygroundpage │ │ └── Contents.swift ├── Sources │ ├── NAL │ │ ├── Const.swift │ │ ├── DSL.swift │ │ ├── Inference.swift │ │ ├── Narsese.swift │ │ ├── Rules.swift │ │ ├── Theorems.swift │ │ ├── TruthValue.swift │ │ └── Utility │ │ │ ├── Compound.swift │ │ │ ├── Extras.swift │ │ │ ├── Judgement.swift │ │ │ ├── Logic.swift │ │ │ ├── LogicKit.swift │ │ │ ├── Temporal.swift │ │ │ ├── Term.swift │ │ │ ├── Truth.swift │ │ │ └── Variable.swift │ └── NARS │ │ ├── Bag.swift │ │ ├── Concept.swift │ │ ├── Memory.swift │ │ ├── NARS.swift │ │ └── Utility │ │ ├── DSL+.swift │ │ ├── Extras+.swift │ │ ├── Item+.swift │ │ ├── Judgement+.swift │ │ └── _.swift └── contents.xcplayground ├── LICENSE ├── Package.swift ├── README.md ├── Sources ├── Narsese │ ├── Covfefe │ │ ├── ABNFImporter.swift │ │ ├── BNFImporter.swift │ │ ├── CYKParser.swift │ │ ├── CharacterSets.swift │ │ ├── EBNFImporter.swift │ │ ├── EarleyParser.swift │ │ ├── Grammar.swift │ │ ├── GrammarCheck.swift │ │ ├── Normalization.swift │ │ ├── Parser.swift │ │ ├── PrefixGrammar.swift │ │ ├── Productions.swift │ │ ├── StringUtility.swift │ │ ├── Symbols.swift │ │ ├── SyntaxTree.swift │ │ ├── Terminal.swift │ │ ├── Tokenizer.swift │ │ └── Utility.swift │ ├── Dialects.swift │ ├── Narsese.swift │ ├── Term.swift │ └── _.swift └── nar │ ├── Commander │ ├── ArgumentConvertible.swift │ ├── ArgumentDescription.swift │ ├── ArgumentParser.swift │ ├── Command.swift │ ├── CommandRunner.swift │ ├── CommandType.swift │ ├── Commands.swift │ ├── Error.swift │ ├── Group.swift │ └── LICENSE │ ├── Sentence.swift │ └── main.swift ├── Tests └── NARS-Tests │ ├── Experimental.swift │ ├── NARS_Tests.swift │ ├── Parsing_Tests.swift │ └── Single_Step.swift ├── TokamakApp ├── .gitignore ├── .swiftpm │ └── xcode │ │ └── xcshareddata │ │ └── xcschemes │ │ └── TokamakApp.xcscheme ├── Bundle │ ├── 3b0cfcae54cab29a.js │ ├── JavaScriptKit_JavaScriptKit.resources │ │ └── Runtime │ │ │ ├── index.js │ │ │ └── index.mjs │ ├── NARS-Swift_nar.resources │ │ └── LICENSE │ ├── TokamakApp_TokamakApp.resources │ │ └── icon_sm.png │ ├── a60648dad9a2402e.wasm │ ├── icon_sm.png │ └── index.html ├── Package.resolved ├── Package.swift ├── README.md ├── Sources │ └── TokamakApp │ │ ├── App.swift │ │ ├── icon_sm.png │ │ └── index.html └── Tests │ └── TokamakAppTests │ └── TokamakAppTests.swift ├── docs └── assets │ ├── Narsese_grammar.jpeg │ ├── Narsese_nal1.png │ ├── Narsese_rules.jpeg │ ├── Narsese_symbols.png │ ├── icon_sm.png │ ├── mark-github.svg │ ├── online_demo.gif │ ├── online_demo.png │ ├── playground_results.png │ ├── studybuddy-gpt.png │ └── studybuddy-logo.png └── studybuddy.html /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/NAL.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/NAL.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/NARS-Swift-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/NARS-Swift-Package.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/NARS-Swift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/NARS-Swift.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/NARS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/NARS.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/Narsese.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/Narsese.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/nar.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/nar.xcscheme -------------------------------------------------------------------------------- /Code.playground/Pages/Esperanto.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Pages/Esperanto.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Code.playground/Pages/Experimental.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Pages/Experimental.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Code.playground/Pages/Language.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Pages/Language.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Code.playground/Pages/Multiplication 2.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Pages/Multiplication 2.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Code.playground/Pages/Multiplication.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Pages/Multiplication.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Code.playground/Pages/Sample.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Pages/Sample.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NAL/Const.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NAL/Const.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NAL/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NAL/DSL.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NAL/Inference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NAL/Inference.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NAL/Narsese.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NAL/Narsese.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NAL/Rules.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NAL/Rules.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NAL/Theorems.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NAL/Theorems.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NAL/TruthValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NAL/TruthValue.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NAL/Utility/Compound.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NAL/Utility/Compound.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NAL/Utility/Extras.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NAL/Utility/Extras.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NAL/Utility/Judgement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NAL/Utility/Judgement.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NAL/Utility/Logic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NAL/Utility/Logic.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NAL/Utility/LogicKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NAL/Utility/LogicKit.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NAL/Utility/Temporal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NAL/Utility/Temporal.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NAL/Utility/Term.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NAL/Utility/Term.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NAL/Utility/Truth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NAL/Utility/Truth.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NAL/Utility/Variable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NAL/Utility/Variable.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NARS/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NARS/Bag.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NARS/Concept.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NARS/Concept.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NARS/Memory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NARS/Memory.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NARS/NARS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NARS/NARS.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NARS/Utility/DSL+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NARS/Utility/DSL+.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NARS/Utility/Extras+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NARS/Utility/Extras+.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NARS/Utility/Item+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NARS/Utility/Item+.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NARS/Utility/Judgement+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NARS/Utility/Judgement+.swift -------------------------------------------------------------------------------- /Code.playground/Sources/NARS/Utility/_.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/Sources/NARS/Utility/_.swift -------------------------------------------------------------------------------- /Code.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Code.playground/contents.xcplayground -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Narsese/Covfefe/ABNFImporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Covfefe/ABNFImporter.swift -------------------------------------------------------------------------------- /Sources/Narsese/Covfefe/BNFImporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Covfefe/BNFImporter.swift -------------------------------------------------------------------------------- /Sources/Narsese/Covfefe/CYKParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Covfefe/CYKParser.swift -------------------------------------------------------------------------------- /Sources/Narsese/Covfefe/CharacterSets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Covfefe/CharacterSets.swift -------------------------------------------------------------------------------- /Sources/Narsese/Covfefe/EBNFImporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Covfefe/EBNFImporter.swift -------------------------------------------------------------------------------- /Sources/Narsese/Covfefe/EarleyParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Covfefe/EarleyParser.swift -------------------------------------------------------------------------------- /Sources/Narsese/Covfefe/Grammar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Covfefe/Grammar.swift -------------------------------------------------------------------------------- /Sources/Narsese/Covfefe/GrammarCheck.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Covfefe/GrammarCheck.swift -------------------------------------------------------------------------------- /Sources/Narsese/Covfefe/Normalization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Covfefe/Normalization.swift -------------------------------------------------------------------------------- /Sources/Narsese/Covfefe/Parser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Covfefe/Parser.swift -------------------------------------------------------------------------------- /Sources/Narsese/Covfefe/PrefixGrammar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Covfefe/PrefixGrammar.swift -------------------------------------------------------------------------------- /Sources/Narsese/Covfefe/Productions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Covfefe/Productions.swift -------------------------------------------------------------------------------- /Sources/Narsese/Covfefe/StringUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Covfefe/StringUtility.swift -------------------------------------------------------------------------------- /Sources/Narsese/Covfefe/Symbols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Covfefe/Symbols.swift -------------------------------------------------------------------------------- /Sources/Narsese/Covfefe/SyntaxTree.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Covfefe/SyntaxTree.swift -------------------------------------------------------------------------------- /Sources/Narsese/Covfefe/Terminal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Covfefe/Terminal.swift -------------------------------------------------------------------------------- /Sources/Narsese/Covfefe/Tokenizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Covfefe/Tokenizer.swift -------------------------------------------------------------------------------- /Sources/Narsese/Covfefe/Utility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Covfefe/Utility.swift -------------------------------------------------------------------------------- /Sources/Narsese/Dialects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Dialects.swift -------------------------------------------------------------------------------- /Sources/Narsese/Narsese.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Narsese.swift -------------------------------------------------------------------------------- /Sources/Narsese/Term.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/Term.swift -------------------------------------------------------------------------------- /Sources/Narsese/_.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/Narsese/_.swift -------------------------------------------------------------------------------- /Sources/nar/Commander/ArgumentConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/nar/Commander/ArgumentConvertible.swift -------------------------------------------------------------------------------- /Sources/nar/Commander/ArgumentDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/nar/Commander/ArgumentDescription.swift -------------------------------------------------------------------------------- /Sources/nar/Commander/ArgumentParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/nar/Commander/ArgumentParser.swift -------------------------------------------------------------------------------- /Sources/nar/Commander/Command.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/nar/Commander/Command.swift -------------------------------------------------------------------------------- /Sources/nar/Commander/CommandRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/nar/Commander/CommandRunner.swift -------------------------------------------------------------------------------- /Sources/nar/Commander/CommandType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/nar/Commander/CommandType.swift -------------------------------------------------------------------------------- /Sources/nar/Commander/Commands.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/nar/Commander/Commands.swift -------------------------------------------------------------------------------- /Sources/nar/Commander/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/nar/Commander/Error.swift -------------------------------------------------------------------------------- /Sources/nar/Commander/Group.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/nar/Commander/Group.swift -------------------------------------------------------------------------------- /Sources/nar/Commander/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/nar/Commander/LICENSE -------------------------------------------------------------------------------- /Sources/nar/Sentence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/nar/Sentence.swift -------------------------------------------------------------------------------- /Sources/nar/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Sources/nar/main.swift -------------------------------------------------------------------------------- /Tests/NARS-Tests/Experimental.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Tests/NARS-Tests/Experimental.swift -------------------------------------------------------------------------------- /Tests/NARS-Tests/NARS_Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Tests/NARS-Tests/NARS_Tests.swift -------------------------------------------------------------------------------- /Tests/NARS-Tests/Parsing_Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Tests/NARS-Tests/Parsing_Tests.swift -------------------------------------------------------------------------------- /Tests/NARS-Tests/Single_Step.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/Tests/NARS-Tests/Single_Step.swift -------------------------------------------------------------------------------- /TokamakApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/TokamakApp/.gitignore -------------------------------------------------------------------------------- /TokamakApp/.swiftpm/xcode/xcshareddata/xcschemes/TokamakApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/TokamakApp/.swiftpm/xcode/xcshareddata/xcschemes/TokamakApp.xcscheme -------------------------------------------------------------------------------- /TokamakApp/Bundle/3b0cfcae54cab29a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/TokamakApp/Bundle/3b0cfcae54cab29a.js -------------------------------------------------------------------------------- /TokamakApp/Bundle/JavaScriptKit_JavaScriptKit.resources/Runtime/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/TokamakApp/Bundle/JavaScriptKit_JavaScriptKit.resources/Runtime/index.js -------------------------------------------------------------------------------- /TokamakApp/Bundle/JavaScriptKit_JavaScriptKit.resources/Runtime/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/TokamakApp/Bundle/JavaScriptKit_JavaScriptKit.resources/Runtime/index.mjs -------------------------------------------------------------------------------- /TokamakApp/Bundle/NARS-Swift_nar.resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/TokamakApp/Bundle/NARS-Swift_nar.resources/LICENSE -------------------------------------------------------------------------------- /TokamakApp/Bundle/TokamakApp_TokamakApp.resources/icon_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/TokamakApp/Bundle/TokamakApp_TokamakApp.resources/icon_sm.png -------------------------------------------------------------------------------- /TokamakApp/Bundle/a60648dad9a2402e.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/TokamakApp/Bundle/a60648dad9a2402e.wasm -------------------------------------------------------------------------------- /TokamakApp/Bundle/icon_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/TokamakApp/Bundle/icon_sm.png -------------------------------------------------------------------------------- /TokamakApp/Bundle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/TokamakApp/Bundle/index.html -------------------------------------------------------------------------------- /TokamakApp/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/TokamakApp/Package.resolved -------------------------------------------------------------------------------- /TokamakApp/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/TokamakApp/Package.swift -------------------------------------------------------------------------------- /TokamakApp/README.md: -------------------------------------------------------------------------------- 1 | # TokamakApp 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /TokamakApp/Sources/TokamakApp/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/TokamakApp/Sources/TokamakApp/App.swift -------------------------------------------------------------------------------- /TokamakApp/Sources/TokamakApp/icon_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/TokamakApp/Sources/TokamakApp/icon_sm.png -------------------------------------------------------------------------------- /TokamakApp/Sources/TokamakApp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/TokamakApp/Sources/TokamakApp/index.html -------------------------------------------------------------------------------- /TokamakApp/Tests/TokamakAppTests/TokamakAppTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/TokamakApp/Tests/TokamakAppTests/TokamakAppTests.swift -------------------------------------------------------------------------------- /docs/assets/Narsese_grammar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/docs/assets/Narsese_grammar.jpeg -------------------------------------------------------------------------------- /docs/assets/Narsese_nal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/docs/assets/Narsese_nal1.png -------------------------------------------------------------------------------- /docs/assets/Narsese_rules.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/docs/assets/Narsese_rules.jpeg -------------------------------------------------------------------------------- /docs/assets/Narsese_symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/docs/assets/Narsese_symbols.png -------------------------------------------------------------------------------- /docs/assets/icon_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/docs/assets/icon_sm.png -------------------------------------------------------------------------------- /docs/assets/mark-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/docs/assets/mark-github.svg -------------------------------------------------------------------------------- /docs/assets/online_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/docs/assets/online_demo.gif -------------------------------------------------------------------------------- /docs/assets/online_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/docs/assets/online_demo.png -------------------------------------------------------------------------------- /docs/assets/playground_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/docs/assets/playground_results.png -------------------------------------------------------------------------------- /docs/assets/studybuddy-gpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/docs/assets/studybuddy-gpt.png -------------------------------------------------------------------------------- /docs/assets/studybuddy-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/docs/assets/studybuddy-logo.png -------------------------------------------------------------------------------- /studybuddy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeeem/NARS-Swift/HEAD/studybuddy.html --------------------------------------------------------------------------------