mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-08-06 06:31:32 +00:00
935dbb63b8d97edab36c9b59e5bfb5b1ec573428
Bumps the actions-updates group with 3 updates in the / directory: [actions/setup-java](https://github.com/actions/setup-java), [gradle/actions](https://github.com/gradle/actions) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/setup-java` from 4.7.0 to 4.7.1 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](3a4f6e1af5...c5195efecf
) Updates `gradle/actions` from 4.3.0 to 4.3.1 - [Release notes](https://github.com/gradle/actions/releases) - [Commits](94baf225fe...06832c7b30
) Updates `actions/upload-artifact` from 4.6.1 to 4.6.2 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](4cec3d8aa0...ea165f8d65
) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: 4.7.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-updates - dependency-name: gradle/actions dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-updates - dependency-name: actions/upload-artifact dependency-version: 4.6.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-updates ... Signed-off-by: dependabot[bot] <support@github.com>
pork
A work-in-progress programming language.
/* fibonacci sequence */
func fib(n) {
return if n < 2 {
n
} else {
fib(n - 1) + fib(n - 2)
}
}
export func main() {
let result = fib(20)
println(result)
}
Usage
./gradlew -q tool:run --args 'run ../examples/fib.pork'
Languages
Kotlin
100%