Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anyone know of any scripting / programming languages that are targeted at (or would be suitable for) use by non-techies?

I have an application that I want non-technical users to be able to extend with simple scripts, however I'm struggling to find a suitable language to use, in particular:

  • It should be forgiving to users (for example it probably shouldn't be case sensitive)
  • It should make it difficult to shoot yourself in the foot (definitely no threading! I also wondered if making everything immutable would make it easier to grasp what is going on)
  • Ideally I'm also after an easy to use editor
  • There definitely needs to be an easy debugging process and intuitive error messages so that users are able to understand the logic behind a script and figure out what went wrong.

Although there are plenty of excellent and powerful scripting languages out there suitable for embedding into an application, most of the popular ones have flaws that make them difficult for non-techies to use:

  • Python's sensitivity to whitespace makes it too easy to break your script without realising why.
  • JavaScript is case sensitive, and can be very cryptic about error messages at times
  • VBScript has 3 different types of Null!

I'm definitely not interested in any visual languages or any rubbish like that - what I'm after is a proper programming language, just one that is forgiving to the needs of non-technical people.

Update:

Just to clarify, the sort of logic / scripts that I'm talking about are things like:

  • Setting some string value based on whether a boolean value is true or false
  • Looping through a collection and adding up the values of some attribute whenever some other attribute is true
  • Some simple string manipulation
  • etc...

The langauge needs to be able to cope with objects and collections, and I need to be able to add some simple functions that hook into some application specific logic, however none of these scripts are going to reach any real level of complexity.

I wanted to avoid creating a domain specific language because its a lot of work and effort, and would end up being a lot poorer in quality than using an existing language. Also the logic is nearly 100% focussed around simple functionality provided by just about every existing langauge out there.

Also to address concerns over technical skill: These people are Smart, theyre just not programmers - although very capable of dealing with logic the average user will be unfamiliar with most programming concepts and (more importantly) will have absolutely no interest in learning syntax or programming concepts beyond the absolute minimum required to achieve the desired effect.

share|improve this question
1  
Which brings us to the topic of necessary and unnecessary complexity. The claim has been made the programing involves a non-trivial amount of necessary complexity, which if true puts a crimp on any plans to prepare a Language for the Rest of Us. – dmckee Aug 5 '10 at 0:46
1  
I have an application that I want non-technical users to be able to extend with simple scripts -- does the application not impose any restrictions on what the language can be? i.e. Does it have preferred/required platforms, is it entirely client based or is there a web aspect, etc? – Peter Boughton Aug 5 '10 at 0:49
5  
"Make it possible for programmers to write programs in English, and you will find that programmers cannot write English." Choosing a different language doesn't make the irreducible complexity of telling a computer what to do go away :) – hobbs Aug 5 '10 at 0:56
2  
People tried this over and over again and the result is..Applescript – Nordic Mainframe Aug 5 '10 at 1:06
1  
While we are at it, can somebody suggest a way of constructing bridges suitable for non-engineers? – Muhammad Alkarouri Sep 3 '10 at 15:59

closed as not constructive by cadrell0, Mac, Will Nov 1 '12 at 14:16

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

9 Answers

Programming is a technical skill. There is no getting away from it. You stand as much chance of farting your way to the moon as getting non-technical (and more importantly non-interested) people to write programs.

Edit: To be a bit more helpful (?), I wouldn't be so dismissive of graphical programming - drag a few things around and connect them up with the mouse - what's not to like? To see what is probably the apotheosis of this approach, take a look at BYOB. But to use even apparently simple tools like BYOB, you have really got to understand the basics of programming - flow control and functions.

share|improve this answer
Amen, brother. Why do companies keep trying to get admins and janitors to do the IT work? I know they're cheaper, but who really wants to get excited about SVN versus GIT besides technical people? – duffymo Aug 5 '10 at 0:56
Todays n00bs are tomorrows job security. – OMG Ponies Aug 5 '10 at 1:08
Although I agree with you, it never hurts to try ;) But I have to admit, watching my sister trying to learn SQL for her accountancy education (why is still a riddle to me) was quite painful. – WoLpH Aug 5 '10 at 1:15
3  
I completely agree that programming is technical, but there's isn't a line where you can suddenly say "this is programming" - even using a calculator can be considered a form of programming. I'm talking about simple chunks of logic not whole applications - many people who have no interest in programming are perfectly capable of expressing even fairly complex logic when it benefits them to do so. – Justin Aug 5 '10 at 1:26
1  
@Kragen: "many people who have no interest in programming are perfectly capable of expressing even fairly complex logic when it benefits them to do so" Really? Do you have a specific person in mind? My experience is the opposite. Remarkably few people can express logic with any clarity at all. Even among professional programmers, there are precious few that are "able to extend with simple scripts" – S.Lott Aug 5 '10 at 10:00
show 5 more comments

Try Lua. It combines simple procedural syntax with powerful data description constructs (see about Lua). It was originally designed for people that are not professional programmers though I couldn't call them non-technical, really: they were for instance engineers and geologists.

share|improve this answer
2  
I'm not disagreeing with you, but why? What makes Lua good for non-programmers' programming? – David Thomas Aug 5 '10 at 0:58
@ricebowl: I've edited my answer. – lhf Aug 5 '10 at 2:49
And +1 for the edit =) – David Thomas Aug 5 '10 at 7:57

I would suggest investigating domain-specific environments. What is it that you /really/ want to do?

If you want to do electrical design, then use tools dedicated for that. If you want to specify testable requirements for a software products, then use tools dedicated for that. (Eg, cucumber).

share|improve this answer
2  
Always a good idea when we're talking about "non-technical" people of a well defined persuasion. – dmckee Aug 5 '10 at 0:50
Tcl, Groovy and Ruby are all pretty decent at making domain specific languages. – Bryan Oakley Aug 5 '10 at 1:29
+1, if your environment allows your users to leverage their experience in their domain to drive the logic, then you're accomplishing your goal. It has little to do with the technicalities of the language, which are really only of interest to coders-by-trade. It has everything to do with naturally expressing your intentions, using a language that clearly and concisely describes your solution to a problem. Ladder logic (one of the visual languages) is ugly to a coder, but was perfect for allowing EE guys to use their skills to create software replacements for their electrical relay systems. – Dan Bryant Aug 5 '10 at 3:01

VBScript has a track record of being usable by non-programmers. I've seen a lot of people able to make something in Excel and Access using VBA. I'd give that a second look.

share|improve this answer
+1 ... there is also a community of "non-programmers" (I suppose, who can still help with Excel scripting). – Hamish Grubijan Aug 5 '10 at 0:51
If they used a programming language, I'd say they were programmers. – anon Aug 5 '10 at 1:03
@Neil Butterworth: If I use a hammer does that make me a carpenter? – Bryan Oakley Aug 5 '10 at 1:27
@Bryan If you also use a nail and a piece of wood, in today's world I would have to say "yes". – anon Aug 5 '10 at 1:30
1  
@Neil Butterworth: sweet! Time to update up the ol' resume! :-) – Bryan Oakley Aug 5 '10 at 1:44

Any proper language has some rules to abide too. Imho for non-technical users it all depends on the editor that is used.

The BASIC languages were originally designed to be easy and clear but have become a little outdated for my taste.

So personally my vote would still go to Python. Yes, it's case sensitive and yes it's not forgiving about whitespace. But once you know those basic rules (and some editors like Pydev warn you about breaking the rules) it is an easy language to work with. I know multiple non-techies that can easily read basic Python and can write a little bit too. So I know for a fact that if someone is atleast a little bright, that he/she can do it.

share|improve this answer
1  
Is there some machine that generates these "use python" answers? – anon Aug 5 '10 at 0:51
The Internet makes it difficult to tell whether WoLpH is a machine or a wolf or a hot chick or a stud programmer or maybe even Alan Turing. – duffymo Aug 5 '10 at 0:55
1  
so, you expect a non-techie to understand object oriented concepts and "you need to count your spaces on each line"? I think python is a horrible choice for a non-techie language. Python's a fine language, but not for non-techies IMO. – Bryan Oakley Aug 5 '10 at 0:57
1  
@Bryan Oakley: Python is fairly easy to read and I know several non-techies that can read and write basic Python. And if you don't explain it as "you have to count the spaces" but as "put everything that should be together at the same column" than it is easy to grasp. Either the people I know are exceptionally bright or it's not as hard as you think it is. – WoLpH Aug 5 '10 at 1:03
1  
@WoLpH: If only "at the same column" was all it took. I guess if you take away their tab key that's easy enough. I just don't like the thought of them getting perplexed because they have the wrong number of invisible characters. Yes, a good editor can help. I still think people have better things to do with their time than deal with whitespace (and I've been doing professional python for a couple years now so I'm not exactly a python bystander). – Bryan Oakley Aug 5 '10 at 1:26
show 1 more comment

I suggest Tcl. It has a very easy "command arg arg" syntax for everything. No special quoting rules to learn, no magic special characters ala perl, etc. The whole of the language can be described on a single man page (though that's not suitable to give to non-techies). It' all very straight forward.

Yes, it has its idiosyncrasies, but mostly the people who are tripped up by them are programmers who refuse to give up their traditional way of thinking how languages should work.

As a side benefit, Tcl was designed from the ground up to be embedded in other applications.

share|improve this answer
I wouldn't wish tcl on anyone. It does, indeed, start easy. But try to do something substantial with it... – dmckee Aug 5 '10 at 1:02
I like to think I can pick up languages easily, but tcl... no. My immediate (and lasting) question about it was - "but why?" And if you want minimalist languages, try Scheme or Smalltalk. – anon Aug 5 '10 at 1:05
@dmckee: I've done many substantial things with it (depending on your definition of "substantial"). Commercially successful apps in the medical field, for tracking satellites, doing a web portal framework, commercial software development tools, as well as many internal projects both big and small. Overall, 100's of thousands of lines of code. That's not the point, though. The original question isn't about doing substantial things but rather "simple scripts" and Tcl's really good for simple scripts. No OO overhead, no worrying about brace styles or indentation, no threading, etc. – Bryan Oakley Aug 5 '10 at 1:09
@Neil Butterworth: scheme and smalltalk are not good for the types of things the question is asking about. As to why Tcl -- there are great answers for that but this isn't the place. One must assume, though, that Tivo, Cisco, Oracle, IBM, NIST, JPL and Pixar all had good reasons for using Tcl in some of their products, to drop just a few names. – Bryan Oakley Aug 5 '10 at 1:15
The most basic TCL scripts are quite easy to read/write. As soon as you get a little further it gets harder and harder. Just looking at some of the examples on the TCL wiki makes me wonder why you would ever recommend it to a non-techy: wiki.tcl.tk/460 – WoLpH Aug 5 '10 at 1:20
show 6 more comments

BRMS solutions might suit your needs. A programmer designs the domain in java say, then the BRMS tools allow the mapping of these classes to natural language. Contraints, templates and decision flows can also be designed to assist the business users. When this is all in place they it can be handed over to the business to maintain. Test cases can be executed, deployment managed etc. There are a number of solutions out there, one that has just been taken over by IBM is JRules.

share|improve this answer

A non techie who wants to learn a programming language would not be a non-techie forever, is 't that right? Its just like the first day in a computer science class. Everybody doesn't know anything in the beginning.

If you want to specifically search for one that is only meant for non-techie, it would be difficult, as every language has its pros and cons. What he/she can really do is

  1. learn how to program,
  2. learn the rules of the language,
  3. get a tutor or go to class if possible
  4. ask if in doubt and
  5. practice practice and more practice.
share|improve this answer
+1: "non-technical users" would not remain non-technical if they had scripting capabilities. – S.Lott Aug 5 '10 at 10:02

You mite try a new language called LOLCODE.

Hello World Example

HAI
CAN HAS STDIO?
VISIBLE "HAI WORLD!"
KTHXBYE
  • HAI and KTHXBYE are the start and stop block delimiters.
  • CAN HAS is a feature request, like require or include.
  • VISIBLE is a print statement.

You can find more information @ http://lolcode.com/home

share|improve this answer
There appears to be a machine that posts these answers too. – anon Aug 5 '10 at 1:26
I'm not a machine, i'm Mr. Wonderful – Roge Aug 5 '10 at 1:34
1  
/@Mr. Wonderful. Please do not have multiple accounts under different names. We hate that. Please close one and use the other. – S.Lott Aug 5 '10 at 10:04

Not the answer you're looking for? Browse other questions tagged or ask your own question.