<!DOCTYPE html>
<html>
<body>
<h1>Hello, World! Saras IT</h1> ...
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Label text="Hello, world! Saras IT"/>
</mx:Application>
OutFile "HelloWorld.exe"
Name "Hello, world!"
Caption "Saras IT"
package helloWorld
fun main(args: Array<String>) {
println("Saras IT")
}
<%@ page contentType="text/html;charset=WINDOWS-1252"%>
<HTML>
<BODY>
<% out.println(" Saras IT"); %> ...
@echo off
set hellostring=Saras IT
echo %hellostring%
Module HelloWorldApp
Sub Main()
System.Console.WriteLine("Saras IT")
End Sub
End Module
protected void Page_Load(object hello_world, EventArgs e)
{
Response.Write("Saras IT");
}
display dialog "Hello, world!"
return "Saras IT"
app.get('/hello-world', function (req, res)
{
res.send(‘Saras IT’)
})
<div ng-app="HelloWorldApp">
<div ng-controller=“HWController”>
<h1>{{greeting}}Saras ...
public function helloWorld():String
{
var greeting:String;
greeting = “Saras IT”;
return greeting;
}
<asp:Label runat="server" id="HelloWorldLabel"></asp:Label>
<%
HelloWorldLabel.Text = "Saras IT";
%>
EXEC SQL
INSERT INTO hello_world
VALUES (‘Saras IT’);
EXEC SQL COMMIT;
WScript.StdOut.WriteLine "Hello, World";
WScript.StdOut.WriteLine("Saras IT");
<?xml version="1.0" encoding="UTF-8"?>
<note>
<to>Hello world!</to>
<from>Saras IT</from>
</note>
@IBAction func buttonPressed(sender: AnyObject) {
println("Hello World; Saras IT")
}
DECLARE @hello_world NVARCHAR(150)
SET @hello_world = 'Saras IT'
PRINT @hello_world
CREATE PACKAGE HELLO_WORLD
DBMS_OUTPUT.PUT_LINE(‘Saras IT’);
END HELLO_WORLD;
/
#!/usr/bin/env perl
use strict;
print ‘Hello, world’;
print ‘Saras IT’;
#import <Foundation/Foundation.h>
NSLog(@”Hello, World!”);
NSLog(@”Saras IT”);
System.out.println("Hello World");
System.out.println(“Saras IT”);
#include<iostream>
int main()
{
std::cout << “Hello, World. Saras IT”;
}
<?php echo '<p>Hello World</p>';
echo ‘<p>Saras IT</p>’; ?>
$("body").html("Hello world!");
$(“body”).append(“Saras IT”);
document.write('Hello, world!');
console.log(‘Saras IT’);
#!/bin/bash
echo “Hello World”; echo “Saras IT”
#include<stdio.h>
main(){ printf(“Hello World”); printf(“%S”,”Saras IT”); ...