Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 886 Bytes

File metadata and controls

38 lines (29 loc) · 886 Bytes

RustTranspiler

Simple transpiler that converts rust like lang to a c#

From rust like syntax

image

To C#

image

To working game

image

features

  • custimizable design that allows easy conversion to different langs.
  • lexer
  • prat parser for expressions
  • special parser for types
  • code generator for #c

Supported syntax

Supports syntax for most of needed operations like:

  • for loop

  • while loop

  • prefixes

  • binary operations

  • if

  • functions

  • out operation

  • variable decleration

  • array: decleration, construction, indexin

  • structs

    And more!