Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(chore) bring all Demo header into sync with new tags #1793

Merged
merged 4 commits into from
Jan 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions demos/bunny/jsmark.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// title: Bunnymark in JavaScript
// author: Rob Loach
// desc: Benchmarking tool to see how many bunnies can fly around the screen, using JavaScript.
// license: MIT License
// input: gamepad
// script: js
// version: 1.1.0
Expand Down
1 change: 1 addition & 0 deletions demos/bunny/luamark.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
-- title: Bunnymark in Lua
-- author: Rabia Alhaffar
-- desc: Benchmarking tool to see how many bunnies can fly around the screen, using Lua.
-- license: MIT License
-- input: gamepad
-- script: lua
-- version: 1.1.0
Expand Down
1 change: 1 addition & 0 deletions demos/bunny/moonmark.moon
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
-- title: Bunnymark in MoonScript
-- author: Rob Loach
-- desc: Benchmarking tool to see how many bunnies can fly around the screen, using MoonScript.
-- license: MIT License
-- input: gamepad
-- script: moon
-- version: 1.1.0
Expand Down
1 change: 1 addition & 0 deletions demos/bunny/rubymark.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# title: Bunnymark in Ruby
# author: Jeremiasz Nelz; based on the original work of Rob Loach
# desc: Benchmarking tool to see how many bunnies can fly around the screen, using Ruby.
# license: MIT License
# input: gamepad
# script: ruby
# version: 0.1.0
Expand Down
1 change: 1 addition & 0 deletions demos/bunny/squirrelmark.nut
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// title: Bunnymark in Squirrel
// author: Rob Loach
// desc: Benchmarking tool to see how many bunnies can fly around the screen, using Squirrel.
// license: MIT License
// input: gamepad
// script: squirrel
// version: 1.1.0
Expand Down
1 change: 1 addition & 0 deletions demos/bunny/wrenmark.wren
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// title: Bunnymark in Wren
// author: Rob Loach
// desc: Benchmarking tool to see how many bunnies can fly around the screen, using Wren.
// license: MIT License
// input: gamepad
// script: wren
// version: 1.1.0
Expand Down
13 changes: 8 additions & 5 deletions demos/fenneldemo.fnl
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
;; title: game title
;; author: game developer
;; desc: short description
;; script: fennel
;; strict: true
;; title: game title
;; author: game developer, email, etc.
;; desc: short description
;; site: website link
;; license: MIT License (change this to your license of choice)
;; version: 0.1
;; script: fennel
;; strict: true

(var t 0)
(var x 96)
Expand Down
11 changes: 7 additions & 4 deletions demos/jsdemo.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
// title: game title
// author: game developer
// desc: short description
// script: js
// title: game title
// author: game developer, email, etc.
// desc: short description
// site: website link
// license: MIT License (change this to your license of choice)
// version: 0.1
// script: js

var t=0
var x=96
Expand Down
11 changes: 7 additions & 4 deletions demos/moondemo.moon
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
-- title: game title
-- author: game developer
-- desc: short description
-- script: moon
-- title: game title
-- author: game developer, email, etc.
-- desc: short description
-- site: website link
-- license: MIT License (change this to your license of choice)
-- version: 0.1
-- script: moon

t=0
x=96
Expand Down
11 changes: 7 additions & 4 deletions demos/rubydemo.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# title: game title
# author: game developer
# desc: short description
# script: ruby
# title: game title
# author: game developer, email, etc.
# desc: short description
# site: website link
# license: MIT License (change this to your license of choice)
# version: 0.1
# script: ruby

$t=0
$x=96
Expand Down
11 changes: 7 additions & 4 deletions demos/squirreldemo.nut
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
// title: game title
// author: game developer
// desc: short description
// script: squirrel
// title: game title
// author: game developer, email, etc.
// desc: short description
// site: website link
// license: MIT License (change this to your license of choice)
// version: 0.1
// script: squirrel

t<-0
x<-96
Expand Down
11 changes: 7 additions & 4 deletions demos/wrendemo.wren
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
// title: game title
// author: game developer
// desc: short description
// script: wren
// title: game title
// author: game developer, email, etc.
// desc: short description
// site: website link
// license: MIT License (change this to your license of choice)
// version: 0.1
// script: wren

class Game is TIC{

Expand Down