mirror of
https://github.com/egormanga/Slang.git
synced 2025-03-01 18:09:30 +03:00
10 lines
227 B
Python
10 lines
227 B
Python
#!/usr/bin/python3
|
|
# Slang .sld parser
|
|
# .sld files are used for definition of built-in, implementation-provided, external and native components, and documentation.
|
|
|
|
from .tokens import *
|
|
from utils import *
|
|
|
|
|
|
# by Sdore, 2020
|