jondot/logolang.org

Add support for comments

Open

#5 aberto em 9 de jan. de 2023

Ver no GitHub
 (0 comments) (0 reactions) (0 assignees)TypeScript (0 forks)github user discovery
good first issue🦀 Rust

Métricas do repositório

Stars
 (11 stars)
Métricas de merge de PR
 (Métricas PR pendentes)

Description

Comments are not implemented right now but can be very simple:

  • Comments start with ;, like Lisp
  • Start of line, or end of line
  • You can trim it as first step before tokenizing code (this way, the parser/ast are ignorant of comments)
  • Prefer not using regex, but if you have to, it's good enough (because in the future, we'll be happy to get rid of the regex crate, which only does tokenization for now)

Guia do colaborador