Short programs that output a simple greeting, typically "Hello world."
1
vote
1answer
21 views
StackMob Custom Code Update Schema on Get Request
I am trying to complete the StackMob hello_world tutorial for custom code found here:
https://www.stackmob.com/devcenter/docs/Getting-Started:-Custom-Code-SDK#a-register_your_method
but when I try to ...
0
votes
2answers
25 views
Eclipse C/C++ HelloWorld
After I had some problems with a c++ program in Eclipse Juno I decided to start it over and I've created a HelloWorld program.It builds but when I press the Run button nothing happens.The odd thing is ...
1
vote
1answer
37 views
Confused in the Hello World example, the Node.JS way
Here is the typical hello world example given in most books for Node.JS -
var http = require('http');
http.createServer(function (req, res) {
res.**writeHead**(200, {'Content-Type': ...
0
votes
3answers
55 views
C++ outputs numbers instead string [duplicate]
I'm new in C++, and I try to print 'Hello world'.
#include <iostream>
using namespace std;
int main() {
cout << 'Hello world!';
return 0;
}
But in result I got '1919706145'. ...
1
vote
0answers
120 views
Cannot Compile “Hello World” in NetBeans IDE 7.3 with MinGW C++
I'm trying to make a simple "Hello World!" program inNetBeans IDE 7.3 with MinGW as my C++ compiler. However, I'm constantly having build failures and I'm an at a loss as to understanding why. I would ...
0
votes
2answers
40 views
Issue with first PHP program
I'm trying to use the here document and store it in a variable. The problem is in notepad++ the here document comments everything below the initialization line, including the closing tag for the PHP ...
-2
votes
2answers
169 views
how do i print hello world 100 times in Go? [closed]
So I have this so far but I'm not sure what to add to make it print Hello world 100 times... any ideas?
package main
import "fmt"
func main() {
fmt.Println("Hello world")
}
0
votes
0answers
69 views
RAP 2.0 Hello World example Entry Point not found
I installed the complete IDE package and the RAP target. After that I wanted to try the "Hello world" example, as you can found here example, but I dont' have the class BasicEntryPoint, which is ...
1
vote
1answer
98 views
Helloworld Doesn't run on Emulator
Okay, this is really ticking me off. I ran it on both my emulator and on an android device. The code does NOT display "Helloworld, Android -mykong.com". I start the app, find it on the emulator, click ...
1
vote
0answers
50 views
Cmake very simple set failure
I trying to start using cmake with the simplest helloworld example, in ubuntu 12.04, cmake 2.8.7. First I tried the one from:
http://www.elpauer.org/stuff/learning_cmake.pdf
project( helloworld )
...
1
vote
1answer
53 views
What is the shortest way to generate a Hello World Exe file from a JSP webpage?
Scenario :
When some one enter to my website at : www.domain.com/mypage.jsp he will find an input text box to type his name, and a download button.
When the user enter his name and hit the download ...
-2
votes
1answer
86 views
How to compile this hello world OS?
I am trying to experiment with the helloWorld OS. I followed the instructions given but cannot make main.c. I looked in the make file and it refrences ./bootmaker which is not in the folder they say ...
0
votes
3answers
102 views
Java - Multi threaded Hello World
Using two threads you should print "Hello World Hello World Hello World Hello World Hello World Hello World ".
In two threads one should print "Hello: and another thread "World".
I can do this with ...
1
vote
1answer
113 views
Minimize code in Contiki-OS
When compiling the example codes from the Contiki port Thingsquare Mist for the MSP430 on the EXP430 board I get
/usr/lib/gcc/msp430/4.5.3/../../../../msp430/bin/ld: hello-world.exp5438 section ...
0
votes
2answers
97 views
Error in HelloWorld: exception in thread “main” java.lang.UnsupportedClassVersionError [duplicate]
when I run my HelloWorld class file after compiling I receive the following error message:
Exception in thread "main" java.lang.UnsupportedClassVersionError: HelloWorld :
Unsupported major.minor ...
0
votes
3answers
69 views
Start an Android Application on Emulator?
I am new to developing Android Application and developing a HelloWorld app.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
...
2
votes
2answers
72 views
During installation of Django, why do I keep getting ImportError: No module named django?
I'm just trying to get a "hello world" using django. I've downloaded django onto my desktop and i have python with Idle in my applications folder. I've followed the instructions on ...
0
votes
3answers
82 views
What is wrong with my neo4j test setup? EmbeddedNeo4j.java, neo4j, maven
I started a project with maven using the "quickstart" archetype. I then changed my POM to include neo4j:
https://github.com/ENCE688R/msrcs/blob/master/pom.xml
I added:
...
0
votes
1answer
26 views
Where does the root of sping-mvc application come from?
I created a simple Spring MVC project in STS according to this tutorial. When run it on server, the "Hello World" page was displayed under this url:
http://localhost:8080/goodproject/
My question ...
0
votes
1answer
92 views
Unknown url handler type, execfile is not defined
Trying to implement the tutorial 'Hello world'.
When I select Python 3.1 nothing happens and the log says that execfile(script_path, globals_)
is not defined.
When I use python 2.7 the terminal ...
0
votes
1answer
125 views
iostream library not included in codeblocks
I'm currently trying codeblocks for my c++ programming but i'm having trouble getting it to compile, i have not had this problem in the past and i've only developed it recently, i have searched google ...
0
votes
1answer
176 views
Neo4J HelloWorld is not working
I am new at Neo4J and following the HelloWorld tutorial on the neo4j website ( http://docs.neo4j.org/chunked/milestone/tutorials-java-embedded-hello-world.html).
My purpose is to create 2 nodes and a ...
1
vote
1answer
161 views
Xcode 4 + OpenCL: looking for a “Hello World” example which uses kernels written in separate files
I am interested in writing OpenCL kernels in separate files because it is much more convient than writing code is a multiple line string! Apple's site have a Hello World example for OpenCL but is uses ...
0
votes
0answers
41 views
Unmodified Hello World Android Project in Eclipse is not getting run
I have programmed android applications before, I am using updated SDK and Eclipse Version: 3.7.2 and have set the path of SDK in Eclipse preferences.When I run a hello world application by following ...
1
vote
2answers
590 views
cucumber-jvm java HelloWorld example OutOfBoundsException error
I would like some help running the java cucumber ‘hello world’ example found in this package:
cucumber.examples.java.helloworld.HelloStepdefs
Am wondering have I missed something in my set-up?
java ...
0
votes
0answers
70 views
Tons of errors when compiling “Hello World” [closed]
I'm compiling "hello world" using Nvidia Nsight:
#include <iostream>
int main ()
{
std::cout << "Hello World!" << "\n";
return 0;
}
The IDE is complaining that "cout" cannot ...
0
votes
1answer
42 views
web.py doesnt detect GET method
I am a noob to both python and web.py worlds.
I just created three files
urls.py
url_mappings = (
'/', 'index'
)
index.py
class index:
def GET(self):
return "<h1>Hello ...
3
votes
1answer
77 views
How to set an input directory for doxygen?
I have a directory in which all source and header files are saved. I would like to run doxygen to generate documentation for these source code. However, I do not want to change anything in this ...
0
votes
2answers
93 views
ZeroMQ REP/REQ doesn't work between public IP and IP behind the NAT
I want to run the zmq REP/REQ HelloWrold example using two different machine.
The source code is here:
CLIENT: http://zguide.zeromq.org/cpp:hwclient
SERVER: http://zguide.zeromq.org/cpp:hwserver
I ...
0
votes
1answer
158 views
C++ Eclipse Mac Hello World
I am using Lion, Mac OX X 10.7.5 and Eclipse Juno to try and learn to program using C++. I created a new project using the hello world template. When I tried running the hello world program I got 3 ...
0
votes
0answers
36 views
Problems with Nsight and libraries
Warning: newbie question!
I create a new empty project in the Nsight IDE, then I create a file "hello.cpp":
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello ...
0
votes
3answers
285 views
Hello World (C and C++) for WinCE application - Visual Studio 2008
I'm a beginner for Visual Studio 2008 (32-bit). The WinCE version I'm using is 7.0 Evaluation. I created a new project as,
New Project -> Platform Builder-> OS Design
Selected the BSP as,
...
-6
votes
2answers
160 views
Source file not compiled
I was running the below program, I got Source file not compiled.
#include<stdio.h>
int main() {
printf ("hello world");
}
But when I add getch() after the printf(), the program was ...
0
votes
2answers
94 views
Java 'T extends' 'hello-world' won't compile
class root { public void say() { System.out.print("hello\n"); }}
class A extends root { @Override public void say() { System.out.print("world A\n"); }}
class B extends root { @Override public void ...
0
votes
0answers
123 views
<iostream> includes not found?
I started a new HelloWorld project, followed the directions in the built-in tutorial, and ran into a problem. The #include <iostream> raises an error, stating the iostream include was not found. ...
2
votes
4answers
145 views
How to execute a hello world javascript file in node.js
I have hello_world.js file located on my computer at the following location -
C:\Users\Ankur\Downloads\NodeJS\working
It has the following code-
console.log("Hellow World");
I was reading a ...
0
votes
2answers
111 views
Problems with external visibility of Flask web-server
I have managed to to install flask and run the hello-world script:
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello World!'
if __name__ == ...
0
votes
1answer
131 views
How to compile Allegro 5 program with GCC using only C programming language
stackoverflow, et. al.,
I just installed Allegro 5 on my Ubuntu machine and I see some source code for this game development tool, but I do not see specific instructions for how to compile it.
For ...
1
vote
2answers
873 views
Akka 2.1 minimal remote actor example
EDIT Notice, I needed to make the reverse changes of this https://github.com/akka/akka/commit/ce014ece3568938b2036c4ccfd21b92faba69607#L13L6 to make the accepted answer work with AKKA 2.1 which is the ...
0
votes
1answer
113 views
JAX-RS modifying project /tomcat
I've been reading a lot on StackOverflow but this is my first question! I've read the rules but bear with me if I miss something :). Don't hesitate to let me know if I'm missing something in my ...
2
votes
2answers
234 views
How to deploy to Google App Engine in Intellij IDEA 12
I need to deploy Hello-World application to Google App Engine. I wanna do it through IDEA coz I have Ultimate one. ButI can't find how to do this. Could you please explain me what should I do to ...
1
vote
1answer
184 views
Run HelloWorld Application from Titanium
I am very new to Titanium. I created a HelloWorld Application on Titanium. And Trying to run it on Android Device connected to my computer. But when I trying to run the application on device it shows ...
1
vote
0answers
73 views
html server grizzly+jersey (.html from .jar archive)
I want to serve my .html sites from a .jar archive and not from a folder.
At the moment i use grizzly (with jersey) and serve static pages like:
HttpServer webServer;
....
....
...
0
votes
4answers
146 views
“Hello world” in C without printf? [closed]
Is it possible to write a "hello world" program in C without the use of the printf function? (while still keeping the program relatively at a few lines)
0
votes
2answers
91 views
How to write a Hello World iWarp application?
I am trying to write a small program demonstrating Remote DMA over iWarp. I have the softiwarp Linux kernel module loaded and the userspace library compiled.
I am looking for documentation or sample ...
1
vote
2answers
312 views
SpringMVC and static resources
Im new in java and spring. I'm trying to make hello world app and don't get what i'm doing wrong.
here is my directory structure:
test_app
-pom.xml
-src
--main
---java
----com.example.web
...
1
vote
3answers
334 views
Cannot find javaw on eclipse to run hello world
This is some strange and annoying issue i am facing .
I was just going through some issue and decided to write simple program to solve it.
It seems that eclipse cannot execute "hello world"
and this ...
3
votes
1answer
87 views
FileNotFound Exception trying simple Spring java application
I have the following "Beans.xml"; it is in eclipse in a 'src' folder:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
...
1
vote
4answers
230 views
Hello.c: In function ‘main’: Hello.c:13: warning: return type of ‘main’ is not ‘int’? [duplicate]
Possible Duplicate:
What should main() return in C/C++?
Just started coding C about an hour ago, after a few months of basic java coding, and am encountering a problem compiling the basic ...
1
vote
1answer
82 views
Getting started with the Halide programming language?
I'm trying to get started with a domain-specific language (C++ extension) for image processing called Halide.
Following the Halide README, here's what I've tried:
Downloaded the Ubuntu 12.04 Halide ...





