Go to file
dependabot[bot] b36850b6ef build(deps): bump the actions-updates group across 1 directory with 4 updates
Bumps the actions-updates group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [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/checkout` from 4.2.2 to 5.0.0
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](11bd71901b...08c6903cd8)

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.4.2
- [Release notes](https://github.com/gradle/actions/releases)
- [Commits](94baf225fe...017a9effdb)

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/checkout
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions-updates
- 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.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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>
2025-08-12 05:22:44 +00:00
2025-07-26 15:55:09 -07:00
2025-07-26 15:55:09 -07:00
2025-07-26 15:29:00 -07:00
2025-07-26 15:49:44 -07:00
2025-07-03 03:18:11 -07:00
2025-07-26 16:09:55 -07:00
2025-07-24 22:30:18 -07:00
2025-07-26 15:49:44 -07:00
2025-07-26 16:09:55 -07:00
2025-07-03 03:18:11 -07:00
2023-09-20 14:43:27 -07:00
2025-07-03 03:18:11 -07:00
2025-07-03 03:18:11 -07:00
2023-08-19 15:34:10 -07:00

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'
Description
Pork Language
Readme MIT 1.4 MiB
Languages
Kotlin 100%