🚀 Building compilers (Orn Lang) • 🎯 TypeScript framework creator (Edno) • ⚙️ cs student
🎯 Orn Lang Compiler
- Modern low-level language with fast single-pass compilation
- Zero-copy reference design for maximum performance
- Precise, actionable error messages for developers
- x86-64 native code generation
🌐 Edno Framework (Deprecated - Old Project)
- Legacy TypeScript web framework with decorators & dependency injection
- Historical project showcasing early framework design concepts
- No longer maintained or updated
@Controller("/greet")
export default class ControllerExample {
constructor(@Inject(ComponentExample) private component: ComponentExample) {}
@Get("/:name")
@HttpCode(HttpStatus.OK)
public greet(@Param("name") name: string): string {
return this.component.greet(name);
}
}