dependabot[bot] 935dbb63b8 build(deps): bump the actions-updates group across 1 directory with 3 updates
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>
2025-08-05 04:38:37 +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%