Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Web page for evaluating ArnoldC programs #8

Open
lhartikk opened this issue Feb 25, 2014 · 7 comments
Open

Web page for evaluating ArnoldC programs #8

lhartikk opened this issue Feb 25, 2014 · 7 comments

Comments

@lhartikk
Copy link
Owner

No description provided.

@mapmeld
Copy link

mapmeld commented Feb 25, 2014

Several months ago, I put together a compiler for another language using CodeMirror and other JavaScript tricks: http://mapplz.com/howandwhy.html

I'll take a look at ArnoldC tonight and see what I can do. It'd be cool to host it on the gh-pages branch of this repo.

@mapmeld
Copy link

mapmeld commented Feb 26, 2014

Check it out! Not 100% but it has printing, variable initialization, variable assignment, and operands: http://mapmeld.github.io/ArnoldC/

Sample programs:

IT'S SHOWTIME
  HEY CHRISTMAS TREE varFalse
  YOU SET US UP @I LIED
  TALK TO THE HAND varFalse

YOU HAVE BEEN TERMINATED
IT'S SHOWTIME
  TALK TO THE HAND "How old will Arnold be this year?"
  GET TO THE CHOPPER age
    HERE IS MY INVITATION 2014
    GET DOWN 1947
  ENOUGH TALK
  TALK TO THE HAND age
YOU HAVE BEEN TERMINATED

If you screw up, it should have syntax errors (not Arnold-ified, unfortunately).

@Sourcex4447
Copy link

Can you guide me how to compile it without using your compiler ?

@mapmeld
Copy link

mapmeld commented Feb 26, 2014

@Sourcex4447 do you mean running it on another website? Requires jQuery, CodeMirror.js, plus arnoldc.js and arnoldc-compiler.js from that page.

Then you'd need to write a file like homepage.js to pass a <textarea> to CodeMirror. This works even if it was created with $("<textarea>") and never actually on the page. Sample code:

var your_text = $("<textarea>");
var myCodeMirror = CodeMirror( your_text[0], {
  mode: "text/x-ruby",
  lineNumbers: true
});

myCodeMirror.setValue("TALK TO THE HAND 3000");

execute_code($(your_text));

Result: console.log says "missing IT'S SHOWTIME on first line" -- you can overwrite console.log in your application to print onto the page.

@Sourcex4447
Copy link

Can't I just Run in my windows PC ?

@mapmeld
Copy link

mapmeld commented Feb 26, 2014

Oh, I misunderstood. Can you type some ArnoldC code in that text area and
run it? If you're trying to run it outside of the web browser that is a
separate issue.

@mapmeld
Copy link

mapmeld commented Feb 27, 2014

Now supports conditionals and loops! It runs the printing 1 to 10 example!

http://mapmeld.github.io/ArnoldC/?v=2

KahCosta pushed a commit to KahCosta/ArnoldC that referenced this issue Oct 25, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants