Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: robmanuel/happybirthday
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: stigzler/happybirthday
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 4 commits
  • 2 files changed
  • 1 contributor

Commits on May 5, 2017

  1. Update happybirthday.bas

    stigzler authored May 5, 2017
    Copy the full SHA
    c3dafb6 View commit details
  2. Punctuation.

    These buggers must have been educated in Hull.
    stigzler authored May 5, 2017
    Copy the full SHA
    cbfd421 View commit details
  3. Update happybirthday.bas

    stigzler authored May 5, 2017
    Copy the full SHA
    a43e77a View commit details

Commits on Apr 28, 2022

  1. Create blank.yml

    stigzler authored Apr 28, 2022
    Copy the full SHA
    868c5e1 View commit details
Showing with 39 additions and 2 deletions.
  1. +36 −0 .github/workflows/blank.yml
  2. +3 −2 happybirthday.bas
36 changes: 36 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3

# Runs a single command using the runners shell
- name: Run a one-line script
run: echo Hello, world!

# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.
5 changes: 3 additions & 2 deletions happybirthday.bas
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
10 INPUT "Whose birthday is it? ",a$
20 GOSUB 100: GOSUB 100
30 PRINT "Happy birthday dear ";a$
40 GOSUB 100: END
100 PRINT "Happy birthday to you": RETURN
35 PRINT "Happy birthday to you."
40 END
100 PRINT "Happy birthday to you,": RETURN