Clone the repo:
git clone https://gist.github.com/vgmoose/403fee8751b920cab955
cd 403fee8751b920cab955
gcc c_bs.c
./a.out
javac Java_BS.java
java Java_BS
node javascript-bs.js
python python-bs.py
ruby ruby-bs.rb
swift swift-bs.swift
- Uses // for comments
- Uses int for integer variables
- Uses int* for integer arrays
- Uses () and {} for loops and blocks
- Arrays must have their size specified
- Has no way to print an array without a loop
- Uses // for comments
- Uses int for integer variables
- Uses int[] for integer arrays
- Uses () and {} for loops and blocks
- Uses // for comments
- Uses var for all variables
- Uses () and {} for loops and blocks
- Uses # for comments
- Uses whitespace for loops and blocks
- Uses # for comments
- Uses do/then..end for blocks
- Uses // for comments
- Uses var for all variables
- Uses {} for blocks