mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-05 01:26:18 +00:00
10 lines
176 B
Plaintext
10 lines
176 B
Plaintext
title: SampleJavaScript
|
|
type: application/javascript
|
|
|
|
/*
|
|
This is an example JavaScript file
|
|
*/
|
|
function myFunction(param) {
|
|
return param * Math.PI; // Perform a calculation
|
|
}
|