0 Users appreciate this thread.
Project SeaCode
djl12328 (2012-09-15 14:40:11)I made a new language. It is actually not hard, but this language is not possible.
www.dark-isle.weebly.com
djl12328 (2012-09-15 21:14:43)Its a language called quartz. I'll release a beta build soon.
www.dark-isle.weebly.com
klubadmin (2012-09-18 21:50:42)You can only really "make a language" if you get the browser to support that language.
It's technically not a language, rather it just lets you type one thing and have it convert it into another existing code.
djl12328 (2012-09-19 21:57:15)What my language does, is converts the code that you type in to my own custom byte code. For instance, when you type in the hello world program:
func main
push str "Hello, World!"
sysf_print
ret
It converts that code into a series of integers, like this.
DL 6 main 2 Hello, World! 1 4
That code is then run by a virtual machine that I wrote. It works the same way as java. -KlubAdmin
P.S. A programming language does not need a browser to run.
www.dark-isle.weebly.com
klubadmin (2012-09-21 01:28:25)@djl Sorry, I was talking to doggle, not you.
And this is the web programming section, so yes, it needs a browser to accept it.
(Capt.)Orb (2012-09-21 21:46:40)I think proper coding php,mysql ect looks tider...
Aviation fact: The a380 is the largest commerical aircraft in service!
Go to Splashiverse! Splashiverse
Go to Splashiverse! Splashiverse
Log in to submit a comment
Back to forum: Web Programming (HTML, JS, CSS, PHP, MySQL)
New registered users today: 7
Newest registered user: ElegantVulpes

You can't mix java and php. Java compiles to its own bytecode that requires a Java Virtual Machine to run, and PHP runs only on a web servers.
This project is also probably impossible.