Skip to content

keeniGithub/GlowLang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GlowLang Logo

GlowLang

Интерпретируемый язык программирования на Python

Документация · Модули · Архитектура · Discussions · VS Code Extension

Warning

Проект теперь разрабатывется под форком Omi Lang


Quick Start

Требуется Python >= 3.11

git clone https://github.com/keeniGithub/GlowLang.git
cd GlowLang
python shell.py

Запуск файла:

GlowShell >>> run example.gl

Пример

func factorial(n)
  if n <= 1: return 1
  return n * factorial(n - 1)
end

// Факториал от 1 до 6
for i = 1 to 6:
  print(factorial(i))
end
@import "system" as sys

func greet(name)
  print("Hello, " + name + "!")
end

greet(sys.username())

About

Интерпретируемый язык программирования на Python

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages