Languages Features Creators CSV Resources Challenges Add Language
GitHub icon

PAWN

PAWN - Programming language

< >

PAWN is a programming language created in 2006.

#523on PLDB 17Years Old 785Users
2Books 0Papers 3kRepos

Try now: Riju

Pawn is a quick and small scripting language that requires few resources.


Example from Riju:
#include <core> main() { print("Hello, world!\n"); }
Example from Linguist:
#include <a_samp> forward OneSecTimer(); new lasttick = 0; main() { print("\n----------------------------------"); print(" This is a blank GameModeScript"); print("----------------------------------\n"); } public OnGameModeInit() { // Set timer of 1 second. SetTimer("OneSecTimer", 1000, 1); print("GameModeInit()"); SetGameModeText("Timer Test"); AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0); return 1; } public OneSecTimer() { if(lasttick == 0) { lasttick = GetTickCount(); return; } new sText[256]; format(sText,sizeof(sText),"GetTickCountOffset = %d",GetTickCount() - lasttick); print(sText); SendClientMessageToAll(0xFF0000, sText); lasttick = GetTickCount(); }

Language features

Feature Supported Token Example
Comments ✓
// A comment
Line Comments ✓ //
// A comment
Semantic Indentation X

Books about PAWN from ISBNdb

title authors year publisher
Pawn (programming Language) Surhone and Lambert M. and Timpledon and Miriam T. and Marseken and Susan F. 2010
A Source Of Pawn Stars Inspiration - 121 Success Secrets Laura Sloan 20150313 Emereo
progsbase.html · pawn.html · mathcad.html

View source

- Build the next great programming language · Search · Day 209 · About · Blog · Acknowledgements · Traffic · Traffic Today · GitHub · feedback@pldb.com