RogueHart Posted August 21, 2008 Posted August 21, 2008 whats the simplest, easiest language you know? personally mine is blitz basic. ive seen people post a large piece of pseudo code to give the general idea of something and it would work put straight into a blitz basic compiler. Quote
silentknight329 Posted August 22, 2008 Posted August 22, 2008 well easiest language i know.. English... second easiest.. c++ Quote
natural_orange Posted August 22, 2008 Posted August 22, 2008 1. Windows Batch (if you call it a language) 2. QBasic (Quick BASIC) 3. VB6/VB.NET Quote
snakey Posted August 22, 2008 Posted August 22, 2008 HTML is you consider it a language (i dont) C++ is logical so thats fine Quote
Esqulax Posted August 22, 2008 Posted August 22, 2008 VB.. dunno why, but i find it easy then C++ Quote
Xarf Posted August 22, 2008 Posted August 22, 2008 As menitoned above it depends what you count as a 'language', Probably HTML/CSS/VB.. however I personally wouldn't count HTML/CSS as a language but more as a script type... or sth. Quote
FireTime Posted August 22, 2008 Posted August 22, 2008 I haven't used it since middle school but I think the simplest language i know would be TI Basic for the 83+. Brings back memories of TIcalc.org. Quote
Deveant Posted August 23, 2008 Posted August 23, 2008 Python would be the easiest to me, i would say VB, but with .net it can be rather fun. Quote
RogueHart Posted August 23, 2008 Author Posted August 23, 2008 I haven't used it since middle school but I think the simplest language i know would be TI Basic for the 83+. Brings back memories of TIcalc.org. oh yeah haha. spent most of my time in algebra coding simple games to play on the calculators lol. Quote
eman7613 Posted August 23, 2008 Posted August 23, 2008 simplest? python or bash (though bash is kinda hackish imo). easiest, id say java. simplest & easiest? .... i dont belive that combination goes well for advanced stuff :P Quote
jollyrancher82 Posted September 3, 2008 Posted September 3, 2008 Depends on what you mean by simplest. I know assembly which is simply in terms of instructions and what they're doing, and I know HTML which is simple to understand. :) Quote
m0u53 Posted September 3, 2008 Posted September 3, 2008 ti-basic C++ 6502 asm(nes) ;) next would be z80 although its kinda tricky(speaking of the ti 83+) ;) Quote
Steve8x Posted September 4, 2008 Posted September 4, 2008 assembly is the easiest i think. Its made up of many simple instructions. So like a big complicated function is really just made up of many small simple instructions... assembly and C are similar if you think about it... notice the similarity in calling functions asm: invoke Sleep, 1000 c: Sleep(1000); but actually both lines of code convert into... push 3E8 call Sleep Quote
ratmandall Posted September 25, 2008 Posted September 25, 2008 HTML is you consider it a language (i dont) C++ is logical so thats fine It is a language Hyper text markup language Probably JustBasic and the easiest to work with for me Visual basic because you have all controls and componets just drag and drop. I don't use those languages anymore Quote
jrsmile Posted November 6, 2008 Posted November 6, 2008 for me the far most easiest language to learn, even though im not a native english speaker is autoit, you can create your own executables no dependancies standalone ... you can write the hello world in one line >>>MsgBox(0, default,"Title", "Hello World")<<< compile it with F7 and you are done. It even comes with it's own nice IDE "SciTe" which has intellisense is flexible and has a lot of nice potential to expand by you :) just download the stable release at www.autoitscript.com and the scite package for stable install them, and you have a COMPLETE documentation with nice examples of EVERY function method and variable you can use. btw: did i mentioned that you don't have to declare variables :) here i have something for you to discover: $a=StringSplit("547275737420796F757220546563686E6F6C75737421","") For $b=1 To UBound($a)+(-1*-1*-1)step(2^4/8) Â Â Â Â Assign("c",Eval("c")&Chr(Dec($a[$b]&$a[$b+1]))) Next MsgBox(0x000000,"",Eval("c")) Quote
X3N Posted November 6, 2008 Posted November 6, 2008 for me the far most easiest language to learn, even though im not a native english speaker is autoit, you can create your own executables no dependancies standalone ... you can write the hello world in one line >>>MsgBox(0, default,"Title", "Hello World")<<< compile it with F7 and you are done. It even comes with it's own nice IDE "SciTe" which has intellisense is flexible and has a lot of nice potential to expand by you :) just download the stable release at www.autoitscript.com and the scite package for stable install them, and you have a COMPLETE documentation with nice examples of EVERY function method and variable you can use. btw: did i mentioned that you don't have to declare variables :) here i have something for you to discover: $a = StringSplit("547275737420796F757220546563686E6F6C75737421", "") For $b=1 To UBound($a)+(-1*-1*-1)step(2^4/8) Â Â Â Â Assign("c",Eval("c")&Chr(Dec($a[$b]&$a[$b+1]))) Next MsgBox(0, Default, Eval("c")) word... autoIT is the simplest... Quote
Will D Posted November 14, 2008 Posted November 14, 2008 whats the simplest, easiest language you know? personally mine is blitz basic. ive seen people post a large piece of pseudo code to give the general idea of something and it would work put straight into a blitz basic compiler. I like your style RogueHart, I would say BlitzBasic is the simplest I've ever learned. Not to mention the quickest I've ever picked up (12 years old when I started BlitzBasic, now i'm on to BlitzMAX). Graphics 800, 600 Local string$ = "Hello World" While Not KeyHit(1)     Cls     Text 0, 0, string     Flip Wend End Quote
RogueHart Posted November 14, 2008 Author Posted November 14, 2008 I like your style RogueHart, I would say BlitzBasic is the simplest I've ever learned. Not to mention the quickest I've ever picked up (12 years old when I started BlitzBasic, now i'm on to BlitzMAX). Graphics 800, 600 Local string$ = "Hello World" While Not KeyHit(1)     Cls     Text 0, 0, string     Flip Wend End im using blitz3d lol. havent used it in a while though but its definitely easy and quick to learn. especially when youve got a good introductory book on it lol Quote
still learning Posted November 15, 2008 Posted November 15, 2008 English of course.. then HTML sort of good with PHP and .BAT programming trying to learn C++ and assembly (have books on both just not enough time to read threw them all) but im slowly learning, my first C++ project im still working on is a UD keylogger, also reading a book on shell scripting.. i guess I have ADD or something i cant just sit and read threw a whole book, its like i read a couple chapters switch to another book read some, ect.. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.