Reputation: 47595
I'm going to go old school on JavaScript and write a BASIC.js that contains functions like:
function UCASE(obj) {
return obj.toUpperCase();
}
function LCASE(obj) {
return obj.toLowerCase();
}
Q: Has anyone done this already?
Upvotes: 3
Views: 141
Reputation: 47595
https://web.archive.org/web/20210301193936/https://www.4guysfromrolla.com/webtech/vb2java.shtml
Upvotes: 0
Reputation: 51052
Don't know that anyone has done that exactly -- honestly not sure of the utility, but hey, if it's fun for you, why not?
However, there are a number of javascript-based BASIC interpreters:
Upvotes: 4