Overview Version History Q & A Rating & Review
Official Visual Studio Code extension for the Fiber programming language. Fiber is a next-generation "batteries-included" language designed for seamless integration of Neural Networks and Symbolic Logic.
🚀 Features
🌈 Gold-Standard Syntax Highlighting : Precisely colorized keywords, operators, and Fiber-specific types (tensor, expr, struct, enum, match).
🏗️ One-Click Standalone Build : Right-click any Fiber file to compile it into a production-ready Windows .exe instantly.
🛡️ Bytecode Integration : Native support for Fiber Compiled Bytecode (.fibc) visualization and distribution.
🧠 Expert Snippets :
fneural: Instantly scaffold a modular Sequential neural network.
fexpr: Create and differentiate symbolic expressions.
fmatch: Professional pattern-matching boilerplate.
🌑 Fiber Branded Dark Theme : A premium, custom-designed dark theme optimized for neuro-symbolic development.
⚙️ Integrated Language Support : Auto-bracket matching, indentation rules, and intelligent comment toggling.
🛠️ Getting Started
Install this extension from the Marketplace.
Open any .fib file.
Switch to the official theme: Ctrl+K, Ctrl+T -> Fiber Branded Dark .
🧩 Fiber at a Glance
# Symbolic Differentiation
var e = expr("x**2 + 5*x")
print diff(e, "x")
# Neural Architecture
from neural import Linear, ReLU, Sequential
var model = Sequential([
Linear(10, 32),
ReLU(),
Linear(32, 1)
])
📜 License
This extension is licensed under the MIT License .
Developed by daksh-gehlot