Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

Logica

< >

Logica is a query language created in 2020 by Evgeny Skvortsov.

#387on PLDB 4Years Old
Download source code:
git clone https://github.com/evgskv/logica
Homepage · Source Code

Logica is an open source declarative logic programming language for data manipulation. Logica is a successor to Yedalog, a language created at Google earlier.


Example from the web:
# Define natural numbers from 1 to 29. N(x) :- x in Range(30); # Define primes. Prime(prime: x) :- N(x), x > 1, ~( N(y), y > 1, y != x, Mod(x, y) == 0 );

Language features

Feature Supported Example Token
Comments ✓ # A comment
Line Comments ✓ # A comment #
Semantic Indentation X
- Build the next great programming language · Add · About · Search · Keywords · Livestreams · Labs · Resources · Acknowledgements · Part of the World Wide Scroll