Skip to content

prabhashaamarathunga/programminglanguages

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Programming Languages

Ada Compile Command: gnatmake bubble.adb

Algol Compile Command: a68g FizzBuzz.a68

C++ Compile Command: g++ quick.cpp -o quick

Fortran Compile Command: gfortran -o FizzBuzz FizzBuzz.f90

Prolog Compile Command: swipl -s FizzBuzz.pl

Scheme Compile Command: mit-scheme --load cocktail.scm

Bash Compile Command: bash bash.sh

Perl Compile Command: perl perl.pl

Ruby Compile Command: ruby ruby.rb

SmallTalk Compile Command: gst FizzBuzz.st

Lex Compile Command: lex lex.l

Yacc Compile Command: yacc -d yacc.yacc

Join Yacc and Lex Compile Command: cc -oexe y.tab.c lex.yy.c