Skip to content

Commit a3cd66a

Browse files
committed
Make "Scheme" live
Closes #167
1 parent dc2a2a9 commit a3cd66a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

config/data/langs.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1180,12 +1180,11 @@ fn main() {
11801180
'''
11811181

11821182
[Scheme]
1183-
args = [ '/usr/bin/schemewrapper', '-' ]
1184-
experiment = 167
1185-
size = '17.9 MiB'
1186-
version = 'Chez Scheme 10.0.0'
1187-
website = 'https://cisco.github.io/ChezScheme/'
1188-
example = '''
1183+
args = [ '/usr/bin/schemewrapper', '-' ]
1184+
size = '17.9 MiB'
1185+
version = 'Chez Scheme 10.0.0'
1186+
website = 'https://cisco.github.io/ChezScheme/'
1187+
example = '''
11891188
; Printing
11901189
(printf "~a~n" "Hello, World!")
11911190

discord/bot.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ func init() {
6565

6666
// TODO Make this dynamic based on hole/lang age.
6767
func channel(_ *config.Hole, lang *config.Lang) string {
68-
if lang.ID == "jq" {
68+
if lang.ID == "scheme" {
6969
return chanFreshID
7070
}
7171
return chanSourID

sql/a-schema.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ CREATE TYPE lang AS ENUM (
6868
'golfscript', 'haskell', 'hexagony', 'j', 'janet', 'java', 'javascript',
6969
'jq', 'julia', 'k', 'lisp', 'lua', 'nim', 'ocaml', 'pascal', 'perl',
7070
'php', 'powershell', 'prolog', 'python', 'r', 'raku', 'rockstar', 'ruby',
71-
'rust', 'sed', 'sql', 'swift', 'tcl', 'tex', 'v', 'viml', 'wren', 'zig'
71+
'rust', 'scheme', 'sed', 'sql', 'swift', 'tcl', 'tex', 'v', 'viml',
72+
'wren', 'zig'
7273
);
7374

7475
CREATE TYPE medal AS ENUM ('unicorn', 'diamond', 'gold', 'silver', 'bronze');

0 commit comments

Comments
 (0)