Skip to content

Commit

Permalink
feat: Add modified site contents
Browse files Browse the repository at this point in the history
  • Loading branch information
MikMuellerDev committed Nov 4, 2024
1 parent f0db56a commit c9d2260
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 33 deletions.
Binary file added public/article.pdf
Binary file not shown.
Binary file not shown.
43 changes: 10 additions & 33 deletions src/App.svelte
Original file line number Diff line number Diff line change
@@ -1,40 +1,22 @@
<script lang="ts">
import rushLogo from '/rush_logo.svg'
// import { onMount } from 'svelte'
//
// // rush scripts
// import rushWelcome from './assets/rush/welcome.rush?raw'
//
// const scripts = [rushWelcome]
// let currRush = ''
// let currRushIdx = 0
//
// function update() {
// if (currRushIdx + 1 == scripts.length) {
// currRushIdx = 0
// } else {
// currRushIdx += 1
// }
//
// currRush = scripts[currRushIdx]
//
// setTimeout(this, 10_000)
// }
//
// onMount(() => {
// update()
// })
import report from '/bringing_the_rush_programming_language_to_the_s390x_architecture.pdf'
// NOTE: Will only be used if the HPI link dies.
// import article from '/article.pdf'
</script>

<main id="app">
<a href="https://github.com/rush-rs" target="_blank" rel="noreferrer">
<img src={rushLogo} id="logo" alt="rush Logo" />
</a>

<h1>The rush Programming Language</h1>
<h1>The rush Programming Language: <a href="https://www.ibm.com/history/system-390" target="_blank" rel="noreferrer"><b>S/390x</b></a> Version</h1>
<h2>
A simple programming language for researching different ways of program execution and
compilation.

<br>
Forked to support code generation for IBM S/390x GNU Assembly.
</h2>

<!-- <div id="rush-demo"> -->
Expand All @@ -48,18 +30,13 @@

<div id="buttons">
<button>
<a href="https://paper.rush-lang.de" target="_blank" rel="noreferrer"> Paper </a>
</button>
<button>
<a href="https://play.rush-lang.de" target="_blank" rel="noreferrer"> Playground </a>
<a href={report} target="_blank" rel="noreferrer"> Technical Report </a>
</button>
<button>
<a href="https://presentation.rush-lang.de" target="_blank" rel="noreferrer">
Presentation
</a>
<a href="https://github.com/rush-rs/rush/tree/s390x/crates/rush-compiler-s390x" target="_blank" rel="noreferrer"> GitHub </a>
</button>
<button>
<a href="https://github.com/rush-rs" target="_blank" rel="noreferrer"> GitHub </a>
<a href="https://hpi.de/artikel/studierende-lernen-auf-ibm-grossrechner-mit-echtzeit-ki/" target="_blank" rel="noreferrer"> IBM Event at HPI </a>
</button>
</div>

Expand Down

0 comments on commit c9d2260

Please sign in to comment.