mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-09-17 16:21:30 +00:00
903f730d510c6a58ea8553d83f0e304b5679b157
pork
A small BBQ language.
Very WIP. Like VERY.
main = {
three = 3
two = 2
calculateSimple = {
(50 + three) * two
}
calculateComplex = {
three + two + 50
}
calculateSimpleResult = calculateSimple()
calculateComplexResult = calculateComplex()
list = [10, 20, 30]
trueValue = true
falseValue = false
[
calculateSimpleResult,
calculateComplexResult,
list,
trueValue,
falseValue
]
}
Languages
Kotlin
100%