22 lines
500 B
Text
22 lines
500 B
Text
---
|
|
title: Emulating GOTO in Scheme with continuations
|
|
description: GOTO sucks and is evil and I hate it, but what if there were parentheses? `call/cc` is kinda like goto, so let's make goto.
|
|
tags: post,short
|
|
date: 2026-02-18 14:28:46 -5
|
|
---
|
|
```basic
|
|
10 PRINT "Hello, world!"
|
|
20 GOTO 10
|
|
```
|
|
|
|
Here is some `inline code`.
|
|
|
|
```js
|
|
console.log("Surely, javascript is supported");
|
|
```
|
|
|
|
```ruby
|
|
3.tap.tap.tap.tap.tap.tap.tap.tap.tap.tap.tap.tap.tap.tap.tap.tap.tap.tap.tap.tap.tap.tap.tap.tap.tap.tap.
|
|
```
|
|
|