There was an error while loading. Please reload this page.
1 parent 0c34bd0 commit 7202932Copy full SHA for 7202932
1 file changed
programs.html
@@ -450,6 +450,14 @@ <h1 class="post-title">Integer Sequences and LODA Programs</h1>
450
pariButtonsContainer.id = pariButtonsId;
451
pariButtonsContainer.className = CSS_CLASSES.PROGRAM_BUTTONS;
452
453
+ // Add "Try it out" button for PARI
454
+ const pariTryButton = document.createElement('a');
455
+ pariTryButton.className = CSS_CLASSES.LODA_BUTTON_SECONDARY;
456
+ pariTryButton.href = 'https://pari.math.u-bordeaux.fr/gp.html';
457
+ pariTryButton.target = '_blank';
458
+ pariTryButton.textContent = 'Try it out';
459
+ pariButtonsContainer.appendChild(pariTryButton);
460
+
461
const pariCopyButton = document.createElement('button');
462
pariCopyButton.className = CSS_CLASSES.LODA_BUTTON + ' copy';
463
pariCopyButton.textContent = 'Copy';
0 commit comments