mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-09-17 08:21:30 +00:00
624b05605a43ef80807c74b77b56728a2551fff1
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%