Perl A simple test.

Slides:



Advertisements
Similar presentations
Connecting to GMT machine via Windows 7. Windows PuTTy GMT on Mac server int-038.geosci.usyd.edu.au To use GMT, you will connect to a Mac server via PuTTy.
Advertisements

COMPUTER PROGRAMMING Task 1 LEVEL 6 PROGRAMMING: Be able to use a text based language like Python and JavaScript & correctly use procedures and functions.
Alford Academy Business Education and Computing1 Advanced Higher Computing Based on Heriot-Watt University Scholar Materials File Handling.
Introduction to Java IEEM241 Routing and Fleet Management Feb 3, 2005.
Activity One Use the Windows Explorer program to create a new folder. Name the folder by your first name. Click on the windows explorer icon then highlight.
IST 221 Internet Concepts and Applications Introduction to PHP.
How to Create a Java program CS115 Fall George Koutsogiannakis.
E.1 Eclipse. e.2 Installing Eclipse Download the eclipse.installation.exe from the course web site to your computer and execute it. Keep the destination.
Installing Bioperl Perl and BioPerl are both open source projects
Java Programming Working with TextPad. Using TextPad to Work with Java This text editor is designed for working with Java You can download a trial version.
Microprocessor Simulation
Java Intro. A First Java Program //The Hello, World! program in Java public class Hello { public static void main(String[] args) { System.out.println("Hello,
How to Compile Java in Windows. click start then run.
Scite Scintilla integrated text editor. Click here.
1ex.1 Perl Programming for Biology Exercise 1 The Bioinformatics Unit G.S. Wise Faculty of Life Science Tel Aviv University, Israel March 2009 Eyal Privman.
How to install the Zelle graphics package
Installing Hugs on Windows March 31, Installing Hugs Go to Click on the Hugs link under implementations.
Creating an HTML page Skills: edit and debug HTML pages IT concepts: text editor This work is licensed under a Creative Commons Attribution-Noncommercial-
Command Console Tutorial BCIS 3680 Enterprise Programming.
CGI programming Using Apache. Concepts Browser prepares parameter list List is attached to name of program to run on server "submit" button sends string.
CS0007: Introduction to Computer Programming Setting Up Java.
Game Programming © Wiley Publishing All Rights Reserved. The L Line The Express Line to Learning L Line L.
When I get my CTPP 2000 CD Home What should I do?.
CprE 288 – Quick intro for compiling C in Linux
Python programs How can I run a program? Input and output.
Chapter Five Maintaining a Computer Part III: File and Folder Management.
Streaming Twitter. Install pycurl library Use a lab computer From the course website Download the links from pycurl and twitter streamer Extract site-packages.zip,
Introduction to Programming Workshop 1 PHYS1101 Discovery Skills in Physics Dr. Nigel Dipper Room 125d
ON-LINE DOCUMENTS 3 DAY /17/14 LING 3820 & 6820 Natural Language Processing Harry Howard Tulane University.
Batch File Basics Automate repetitive computer processes Friday, March 12, 2014 Presented by Thomas Redd, STS, Granite School District.
CSI 1390: Introduction to Computers TA: Tapu Kumar Ghose Office: STE 5014
Chapter 1© copyright Janson Industries Java ▮ Java programming concepts ▮ Downloading the JDK ▮ Java coding and executing example This presentation.
UCSC All rights reserved. No part of this material may be reproduced and sold. 1 IT1202-Fundamentals Of Programming (Using JAVA) Interacting with.
1 Installation When this module is complete, you will be able to:  Set a static IP address for your laptop  Install the snom ONE software  Navigate.
How to Tag a Corpus Using Stanford Tagger. Accuracy All tokens: 97.32% Unknown words: 90.79%
How to Download Sermons from the LBC Sermon Website To Download or to listen then please follow the instructions in the boxes (similar to this one) that.
Bioinformatics Introduction to Perl. Introduction What is Perl Basic concepts in Perl syntax: – variables, strings, – Use of strict (explicit variables)
Intro Python: Variables, Indexing, Numbers, Strings.
Using Macros in Minitab
How to create and install packages in R Presenter: Roman Jandarov
DOS and the Command Line CS 21a: Introduction to Computing I Department of Information Systems and Computer Science Ateneo de Manila University.
1 Getting Started with C++. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Visual Studio 2008.
If you use it, cite it.
DOS and the Command Line CS 21a: Introduction to Computing I First Semester,
Java Programming, Second Edition Appendix A Working with Java SDK 1.4.
June 23, 2001Database Creation Review and Exercises1 Building an Application - Part I -
Scripting Languages Course 3 Diana Trandab ă ț Master in Computational Linguistics - 1 st year
FOCOMM_CAMAC Setup and Usage Guide Andrew Wong, Larry Ruckman.
1 Getting Started with C++ Part 1 Windows. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Microsoft.
How to Execute TSR Program. Install Borland C++ Download Borland C++ from LMS – oads/BORLANDC.rarhttp://vulms.vu.edu.pk/Courses/CS609/Downl.
Practical Kinetics Exercise 0: Getting Started Objectives: 1.Install Python and IPython Notebook 2.print “Hello World!”
Install CB 1.8 on Ubuntu. Steps Followed Install Ubuntu (Ubuntu LTS) on Virtual machine – (VMware Workstation) (
Bioinformatics Introduction to Perl. Introduction What is Perl Basic concepts in Perl syntax: – variables, strings, – Use of strict (explicit variables)
MySQL Getting Started BCIS 3680 Enterprise Programming.
Ns2 Installations and Basics Abdul Razaque. How to install Ubuntu on windows-7 & 8 Download the Ubuntu ISO file. You can get the ISO file from the Ubuntu.
Scripting Languages Course 7 Diana Trandab ă ț Master in Computational Linguistics - 1 st year
Python Lesson 12 Mr. Kalmes.
A Short DOS Presentation
Introduction to Web programming
Python Lesson 12 Mr. Kalmes.
Updated July 15, 2017: How to start Condor on a Windows 10 PC
1. Open Visual Studio 2008.
IOTA HOW TO START BUILDING.
Run Java file with Window cmd
CSCI N207 Data Analysis Using Spreadsheet
Scripts In Matlab.
Java Tutotrial for [NLP-AI] 2
DOS Commands Damian Gordon.
Compile and run c files.
XAMPP.
Presentation transcript:

Perl A simple test

Test program Download and install ActivePerl 5.14.2 (x86) Download and install notepad++ installer First perl program: hi.pl #!/usr/bin/perl print "Hi my name is Denis and I am from CORK \n “; print is reserved word “ “ string start and end \n moves the cursor to next line ; terminates each line (like a .) Open notepad/notepad++ and type the above Save file as hi.pl Ensure that hide file extensions option is unchecked if using notepad. Run via the command line start->cmd: opens the dos window. Move to directory where you save the file and at the command prompt type: perl hi.pl

Output of “Hi” program Important: c:\Perlcode> is the folder I am storing my perl programs if you are storing them in a different location ensure you change the director to that location: c: (the drive) cd yourfolder

Exercise 1 Write a perl program that will display the following: My name is your name; e.g.Denis I am from ; e.g. Cork I am currently doing the DT249 course This course is called …… Run code (via commandline) to verify it works