File tree 1 file changed +3
-3
lines changed
package/origlang-interop-frontend-webserver/www
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 17
17
const plural = ( s , n ) => n >= 2 ? `${ s } s` : s ;
18
18
switch ( s ) {
19
19
case "Hello, World" :
20
- fetch ( "./example/hello_world.ol " ) . then ( x => x . text ( ) ) . then ( t => {
20
+ fetch ( "./example/hello_world.origlang " ) . then ( x => x . text ( ) ) . then ( t => {
21
21
document . getElementById ( "src" ) . value = t ;
22
22
} ) ;
23
23
break ;
24
24
case "Fizz Buzz" :
25
- fetch ( "./example/fizz_buzz.ol " ) . then ( x => x . text ( ) ) . then ( t => {
25
+ fetch ( "./example/fizz_buzz.origlang " ) . then ( x => x . text ( ) ) . then ( t => {
26
26
document . getElementById ( "src" ) . value = t ;
27
27
} ) ;
28
28
break ;
29
29
case "99 Bottles of Beer" :
30
- fetch ( "./example/99_bottles_of_beer.ol " ) . then ( x => x . text ( ) ) . then ( t => {
30
+ fetch ( "./example/99_bottles_of_beer.origlang " ) . then ( x => x . text ( ) ) . then ( t => {
31
31
document . getElementById ( "src" ) . value = t ;
32
32
} )
33
33
break ;
You can’t perform that action at this time.
0 commit comments