Hello World
Hello World
Hi,
I wrote the program needed for the challenge and it works.
But when I run it with the python hackvm, it just prints 'Hello, World'.
It does not give any answer or hint.
Is it a bug in hackvm or did i not understand the challenge ?
I wrote the program needed for the challenge and it works.
But when I run it with the python hackvm, it just prints 'Hello, World'.
It does not give any answer or hint.
Is it a bug in hackvm or did i not understand the challenge ?
Re: Hello World
Just paste your program into the answer box and submit that.
your program is your answer
your program is your answer
Hello World!
1 REM * THIS A SAMPLE PROGRAM IN BASIC *;
2 REM* BY HYDRA*;
3 PRINT "HELLO WORLD";
4 END
RUN
HELLO WORLD
THIS ANOTHER SAMPLE
IN MICROSOFT QBASIC
REM *HELLOWORLD*
INPUT "WHAT IS YOUR NAME:" ;A$
PRINT "THANK YOU";A$
END
RUN
WHAT IS YOUR NAME: HYDRA
THANK YOU HYDRA
2 REM* BY HYDRA*;
3 PRINT "HELLO WORLD";
4 END
RUN
HELLO WORLD
THIS ANOTHER SAMPLE
IN MICROSOFT QBASIC
REM *HELLOWORLD*
INPUT "WHAT IS YOUR NAME:" ;A$
PRINT "THANK YOU";A$
END
RUN
WHAT IS YOUR NAME: HYDRA
THANK YOU HYDRA
I am not a Hacker. I am security professional.
Re: My program
Omg, you're such a retard, do you want to steal from others the challenging experience?
-
- Posts: 273
- Joined: Thu Apr 10, 2008 9:47 pm
Silly question?
Okay, so I went the cheesy way and initialized my memory with a bunch of useful constants. Which works fine in both implementations, but can I tell the website to load my memory string somehow or do I need to do some real thinking?
Thanks~
Thanks~
chown -R us ./base
The memory isn't meant to be initialized by yourself. The memory can be initialized by the challenge itself (then it is stated in the challenge description).
Cf the hvm description
Cf the hvm description
You can of course change the memory from within your program using the < > instruction.By default, [...] all the cells in the memory buffer set to 0. When specified, it is possible for the memory buffer to have been initialized to a known state before executing a program.